From 2b123f30175e706a5dba1d72570e904c60753aae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Wed, 16 Feb 2011 21:02:30 +0100 Subject: [PATCH] Release 1.1.7. --- CHANGELOG.rdoc | 12 +++++++++--- README.rdoc | 4 ++-- devise.gemspec | 4 ++-- lib/devise/version.rb | 2 +- 4 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index 77d8abbfd8..8952de3e46 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,8 +1,14 @@ +== 1.1.7 + +* bugfix + * Fix a backward incompatible change with versions prior to Rails 3.0.4 + == 1.1.6 -* Use a more secure e-mail regexp -* Implement Rails 3.0.4 handle unverified request -* Use secure_compare to compare passwords +* bugfix + * Use a more secure e-mail regexp + * Implement Rails 3.0.4 handle unverified request + * Use secure_compare to compare passwords == 1.1.5 diff --git a/README.rdoc b/README.rdoc index 62747ae85b..43b4c0767f 100644 --- a/README.rdoc +++ b/README.rdoc @@ -24,7 +24,7 @@ Right now it's composed of 11 modules: Devise 1.1 supports Rails 3 and is NOT backward compatible. You can use the latest Rails 3 beta gem with Devise latest gem: - gem install devise --version=1.1.6 + gem install devise --version=1.1.7 If you want to use Rails master (from git repository) you need to use Devise from git repository and vice-versa. @@ -42,7 +42,7 @@ Replace MODEL by the class name you want to add devise, like User, Admin, etc. T If you want to use the Rails 2.3.x version, you should do: - gem install devise --version=1.0.8 + gem install devise --version=1.0.10 And please check the README at the v1.0 branch since this one is based on Rails 3: diff --git a/devise.gemspec b/devise.gemspec index 40bfe6d3a6..4b1a826331 100644 --- a/devise.gemspec +++ b/devise.gemspec @@ -5,11 +5,11 @@ Gem::Specification.new do |s| s.name = %q{devise} - s.version = "1.1.6" + s.version = "1.1.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{2011-02-15} + s.date = %q{2011-02-16} s.description = %q{Flexible authentication solution for Rails with Warden} s.email = %q{contact@plataformatec.com.br} s.extra_rdoc_files = [ diff --git a/lib/devise/version.rb b/lib/devise/version.rb index bfc309b3a2..25b46b92c0 100644 --- a/lib/devise/version.rb +++ b/lib/devise/version.rb @@ -1,3 +1,3 @@ module Devise - VERSION = "1.1.6".freeze + VERSION = "1.1.7".freeze end