1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00

Release devise 1.1.rc1.

This commit is contained in:
José Valim 2010-04-15 08:45:33 +02:00
parent b9c0676a01
commit ca6248cfd3
4 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
== 1.1.rc
== 1.1.rc1
* enhancements
* Rails 3 compatibility.

View file

@ -33,7 +33,7 @@ Devise is based on Warden (http://github.com/hassox/warden), a Rack Authenticati
Devise master branch now supports Rails 3 and is NOT backward compatible. You can use the latest Rails 3 beta gem with Devise latest gem:
sudo gem install devise --version=1.1.rc0
sudo gem install devise --version=1.1.rc1
After you install Devise and add it to your Gemfile, you need to run the generator:

View file

@ -5,11 +5,11 @@
Gem::Specification.new do |s|
s.name = %q{devise}
s.version = "1.1.rc0"
s.version = "1.1.rc1"
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Jos\303\251 Valim", "Carlos Ant\303\264nio"]
s.date = %q{2010-04-13}
s.date = %q{2010-04-15}
s.description = %q{Flexible authentication solution for Rails with Warden}
s.email = %q{contact@plataformatec.com.br}
s.extra_rdoc_files = [

View file

@ -1,3 +1,3 @@
module Devise
VERSION = "1.1.rc0".freeze
VERSION = "1.1.rc1".freeze
end