Skip to content

Commit

Permalink
version 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marioizquierdo committed Jan 8, 2018
1 parent ab6cacd commit 9d6bf55
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/redis_lock.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'redis' # redis gem required
require 'redis'
require 'securerandom' # SecureRandom (from stdlib)
require 'redis_lock/version'

Expand Down
4 changes: 1 addition & 3 deletions lib/redis_lock/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
class RedisLock

# Gem version
VERSION = "1.2.0"
VERSION = "1.2.1"
end
4 changes: 2 additions & 2 deletions mario-redis-lock.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ Gem::Specification.new do |spec|

spec.add_runtime_dependency 'redis', '>= 3.0.5' # Needed support for SET with EX, PX, NX, XX options: https://github.com/redis/redis-rb/pull/343

spec.add_development_dependency 'bundler', '~> 1'
spec.add_development_dependency 'rake', '~> 10'
spec.add_development_dependency 'bundler', '>= 1'
spec.add_development_dependency 'rake', '>= 10'
end

0 comments on commit 9d6bf55

Please sign in to comment.