Release v1.0.11

This commit is contained in:
José Valim
2011-03-11 21:44:59 +01:00
parent 5eb4c39eb8
commit 15fd736f07
3 changed files with 10 additions and 5 deletions

View File

@@ -1,3 +1,9 @@
== 1.0.11
* bug fix
* Make sure xhr requests do not store urls for redirect
* Squeeze break lines from cookies to avoid duplicated break lines
== 1.0.10
* bug fix

View File

@@ -5,11 +5,11 @@
Gem::Specification.new do |s|
s.name = %q{devise}
s.version = "1.0.10"
s.version = "1.0.11"
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-03-11}
s.description = %q{Flexible authentication solution for Rails with Warden}
s.email = %q{contact@plataformatec.com.br}
s.extra_rdoc_files = [
@@ -99,7 +99,7 @@ Gem::Specification.new do |s|
]
s.homepage = %q{http://github.com/plataformatec/devise}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.rubygems_version = %q{1.5.3}
s.summary = %q{Flexible authentication solution for Rails with Warden}
s.test_files = [
"test/controllers/helpers_test.rb",
@@ -164,7 +164,6 @@ Gem::Specification.new do |s|
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then

View File

@@ -1,3 +1,3 @@
module Devise
VERSION = "1.0.10".freeze
VERSION = "1.0.11".freeze
end