Skip to content

Commit

Permalink
Release devise 1.0.7 with small fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed May 3, 2010
1 parent c29b6ca commit c38b2f6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rdoc
@@ -1,3 +1,12 @@
== 1.0.7

* bug fix
* Ensure password confirmation is always required

* deprecations
* authenticatable was deprecated and renamed to database_authenticatable
* confirmable is not included by default on generation

== 1.0.6

* bug fix
Expand Down
4 changes: 2 additions & 2 deletions devise.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{devise}
s.version = "1.0.6"
s.version = "1.0.7"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jos\303\251 Valim", "Carlos Ant\303\264nio"]
s.date = %q{2010-04-03}
s.date = %q{2010-05-03}
s.description = %q{Flexible authentication solution for Rails with Warden}
s.email = %q{contact@plataformatec.com.br}
s.extra_rdoc_files = [
Expand Down
2 changes: 1 addition & 1 deletion lib/devise/version.rb
@@ -1,3 +1,3 @@
module Devise
VERSION = "1.0.6".freeze
VERSION = "1.0.7".freeze
end
2 changes: 1 addition & 1 deletion test/integration/registerable_test.rb
Expand Up @@ -28,7 +28,7 @@ class RegistrationTest < ActionController::IntegrationTest
fill_in 'password confirmation', :with => 'new_user123'
click_button 'Sign up'

assert_equal "You have signed up successfully. If enabled, a confirmation was sent your e-mail.", @controller.send(:flash)[:notice]
assert_equal "You have signed up successfully. If enabled, a confirmation was sent to your e-mail.", @controller.send(:flash)[:notice]

# For some reason flash is not being set correctly, so instead of getting the
# "signed_up" message we get the unconfirmed one. Seems to be an issue with
Expand Down

0 comments on commit c38b2f6

Please sign in to comment.