Skip to content

Commit

Permalink
Bump to 0.16.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-burns committed Mar 16, 2012
1 parent a01d81f commit 4cacef5
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 42 deletions.
26 changes: 0 additions & 26 deletions ChangeLog

This file was deleted.

6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GIT
PATH
remote: .
specs:
clearance (0.15.0)
clearance (0.16.0)
diesel (~> 0.1.5)
rails (>= 3.0)

Expand Down Expand Up @@ -45,7 +45,7 @@ GEM
appraisal (0.3.8)
bundler
rake
arel (3.0.0)
arel (3.0.2)
aruba (0.4.6)
bcat (>= 0.6.1)
childprocess (>= 0.2.0)
Expand Down Expand Up @@ -162,7 +162,7 @@ GEM
treetop (1.4.10)
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.31)
tzinfo (0.3.32)
xpath (0.1.4)
nokogiri (~> 1.3)

Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
New for 0.16.0:

* Blowfish password encryption strategy (Chris Dillon)

New for 0.15.0:

* The User model can be swapped out using the Clearance.configure method.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ By default, Clearance uses SHA1 encryption of the user's password. You can provi
def encrypt_password
end

See [lib/clearance/password_strategies/sha1.rb](https://github.com/thoughtbot/clearance/blob/master/lib/clearance/password_strategies/sha1.rb) for the default behavior. Also see [lib/clearance/password_strategies/blowfish.rb](https://github.com/thoughtbot/clearance/blob/master/lib/clearance/password_strategies/blowfish.rb) for another password strategy. Switching password strategies will cause your existing users' passwords to not work.
See [lib/clearance/password_strategies/sha1.rb](https://github.com/thoughtbot/clearance/blob/master/lib/clearance/password_strategies/sha1.rb) for the default behavior. Also see [lib/clearance/password_strategies/blowfish.rb](https://github.com/thoughtbot/clearance/blob/master/lib/clearance/password_strategies/blowfish.rb) for another password strategy. Switching password strategies will cause your existing users' passwords to not work.

Once you have an API-compliant module, load it with:

Expand All @@ -207,7 +207,7 @@ For example:

# default
config.password_strategy = Clearance::PasswordStrategies::SHA1
# ... or another example
# Blowfish
config.password_strategy = Clearance::PasswordStrategies::Blowfish


Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.15.0
0.16.0
8 changes: 4 additions & 4 deletions gemfiles/3.0.9.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

source "http://rubygems.org"

gem "capybara", "~> 1.1.1"
gem "factory_girl_rails"
gem "rails", "3.0.9"
gem "shoulda-matchers", :git=>"git://github.com/thoughtbot/shoulda-matchers.git"
gem "database_cleaner"
gem "launchy"
gem "aruba", "~> 0.4.2"
gem "rails", "3.0.9"
gem "capybara", "~> 1.1.1"
gem "factory_girl_rails"
gem "launchy"

gemspec :path=>"../"
2 changes: 1 addition & 1 deletion gemfiles/3.0.9.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GIT
PATH
remote: /home/mike/lib/clearance
specs:
clearance (0.15.0)
clearance (0.16.0)
diesel (~> 0.1.5)
rails (>= 3.0)

Expand Down
8 changes: 4 additions & 4 deletions gemfiles/3.1.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

source "http://rubygems.org"

gem "capybara", "~> 1.1.1"
gem "factory_girl_rails"
gem "rails", "3.1.0"
gem "shoulda-matchers", :git=>"git://github.com/thoughtbot/shoulda-matchers.git"
gem "database_cleaner"
gem "launchy"
gem "aruba", "~> 0.4.2"
gem "rails", "3.1.0"
gem "capybara", "~> 1.1.1"
gem "factory_girl_rails"
gem "launchy"

gemspec :path=>"../"
2 changes: 1 addition & 1 deletion gemfiles/3.1.0.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GIT
PATH
remote: /home/mike/lib/clearance
specs:
clearance (0.15.0)
clearance (0.16.0)
diesel (~> 0.1.5)
rails (>= 3.0)

Expand Down

0 comments on commit 4cacef5

Please sign in to comment.