Skip to content

Commit

Permalink
Release Devise 1.0.8 with a few fixes and latest mongomapper support.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Jun 23, 2010
1 parent a41025e commit 1741a79
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rdoc
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions devise.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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{[email protected]}
s.extra_rdoc_files = [
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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<warden>, ["~> 0.10.3"])
else
s.add_dependency(%q<warden>, ["~> 0.10.3"])
Expand Down
2 changes: 1 addition & 1 deletion lib/devise/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Devise
VERSION = "1.0.7".freeze
VERSION = "1.0.8".freeze
end

0 comments on commit 1741a79

Please sign in to comment.