diff --git a/authn-rails.gemspec b/authn-rails.gemspec index 942c6cc..1872c8a 100644 --- a/authn-rails.gemspec +++ b/authn-rails.gemspec @@ -20,7 +20,6 @@ Gem::Specification.new do |gem| gem.add_runtime_dependency 'authn', '~> 2.0' gem.add_runtime_dependency 'rails', '~> 3.2' gem.add_runtime_dependency 'astruct', '~> 2.9' - gem.add_runtime_dependency 'bcrypt-ruby', '~> 3.0' gem.add_development_dependency 'yard' gem.add_development_dependency 'kramdown' # gem.add_runtime_dependency 'gemname', '~> 1.0' diff --git a/lib/authn/rails/version.rb b/lib/authn/rails/version.rb index 33d841c..1872ef0 100644 --- a/lib/authn/rails/version.rb +++ b/lib/authn/rails/version.rb @@ -1,5 +1,5 @@ module AuthN module Rails - VERSION = "1.3.0" + VERSION = "1.3.1" end end diff --git a/test/lib/authn/rails/version_test.rb b/test/lib/authn/rails/version_test.rb index ed428dc..1d3640d 100644 --- a/test/lib/authn/rails/version_test.rb +++ b/test/lib/authn/rails/version_test.rb @@ -3,6 +3,6 @@ class TestAuthNRailsVersion < MiniTest::Unit::TestCase def test_that_version_is_latest - assert_equal "1.3.0", AuthN::Rails::VERSION + assert_equal "1.3.1", AuthN::Rails::VERSION end end