Skip to content

Commit 5494c05

Browse files
committed
bump version for rubygems submission
1 parent a4c68b0 commit 5494c05

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

cacheable.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
Gem::Specification.new do |s|
44
s.name = 'cacheable'
5-
s.version = '1.0.0'
6-
s.date = '2018-07-26'
7-
s.summary = 'Make any method automactially cacheable'
8-
s.description = 'Adds the `cacheable` method to the class.'
5+
s.version = '1.0.1'
6+
s.date = '2018-07-31'
7+
s.summary = 'Add caching to any Ruby method in a aspect orientated programming approach.'
8+
s.description = 'Add caching simply without modifying your existing code. Inlcudes configurable options for simple cache invalidation. See README on github for more information.'
99
s.authors = ['Jess Hottenstein', 'Ryan Laughlin', 'Aaron Rosenberg']
1010
s.email = 'support@splitwise.com'
1111
s.files = ['lib/cacheable.rb']

lib/cacheable/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module Cacheable
44
module VERSION
55
MAJOR = 1
66
MINOR = 0
7-
TINY = 0
7+
TINY = 1
88
PRE = nil
99

1010
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.').freeze

0 commit comments

Comments
 (0)