From 1741a79114df35c7396533d92426b307b55c45bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Wed, 23 Jun 2010 12:20:27 +0200 Subject: [PATCH] Release Devise 1.0.8 with a few fixes and latest mongomapper support. --- CHANGELOG.rdoc | 9 +++++++++ devise.gemspec | 8 ++++---- lib/devise/version.rb | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index e1a9df614c..a859b131a1 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,3 +1,12 @@ +== 1.0.8 + +* enhancements + * Support for latest MongoMapper + * Added anybody_signed_in? helper (by github.com/SSDany) + +* bug fix + * confirmation_required? is properly honored on active? calls. (by github.com/paulrosania) + == 1.0.7 * bug fix diff --git a/devise.gemspec b/devise.gemspec index 7f6b643da9..b59e180159 100644 --- a/devise.gemspec +++ b/devise.gemspec @@ -5,11 +5,11 @@ Gem::Specification.new do |s| s.name = %q{devise} - s.version = "1.0.7" + s.version = "1.0.8" 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-05-03} + s.date = %q{2010-06-23} s.description = %q{Flexible authentication solution for Rails with Warden} s.email = %q{contact@plataformatec.com.br} s.extra_rdoc_files = [ @@ -100,7 +100,7 @@ Gem::Specification.new do |s| s.homepage = %q{http://github.com/plataformatec/devise} s.rdoc_options = ["--charset=UTF-8"] s.require_paths = ["lib"] - s.rubygems_version = %q{1.3.6} + s.rubygems_version = %q{1.3.7} s.summary = %q{Flexible authentication solution for Rails with Warden} s.test_files = [ "test/controllers/helpers_test.rb", @@ -168,7 +168,7 @@ Gem::Specification.new do |s| current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION s.specification_version = 3 - if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(%q, ["~> 0.10.3"]) else s.add_dependency(%q, ["~> 0.10.3"]) diff --git a/lib/devise/version.rb b/lib/devise/version.rb index 983ec84240..18d486692b 100644 --- a/lib/devise/version.rb +++ b/lib/devise/version.rb @@ -1,3 +1,3 @@ module Devise - VERSION = "1.0.7".freeze + VERSION = "1.0.8".freeze end