Release 3.0.0.rc with Rails 4 support

This commit is contained in:
Carlos Antonio da Silva 2013-05-07 13:32:03 -03:00
parent 270e2ece19
commit 39c1a2c7d0
5 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
== master
== 3.0.0.rc
* enhancements
* Rails 4 and Strong Parameters compatibility. (@carlosantoniodasilva, @josevalim, @latortuga, @lucasmazza, @nashby, @rafaelfranca, @spastorino)

View File

@ -12,7 +12,7 @@ GIT
PATH
remote: .
specs:
devise (2.2.4)
devise (3.0.0.rc)
bcrypt-ruby (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)

View File

@ -57,7 +57,7 @@ You can view the Devise documentation in RDoc format here:
http://rubydoc.info/github/plataformatec/devise/master/frames
If you need to use Devise with Rails 2.3, you can always run "gem server" from the command line after you install the gem to access the old documentation.
If you need to use Devise with previous versions of Rails, you can always run "gem server" from the command line after you install the gem to access the old documentation.
### Example applications
@ -90,7 +90,7 @@ Once you have solidified your understanding of Rails and authentication mechanis
## Getting started
Devise 2.0 works with Rails 3.1 onwards. You can add it to your Gemfile with:
Devise 3.0 works with Rails 3.2 onwards. You can add it to your Gemfile with:
```ruby
gem 'devise'

View File

@ -1,7 +1,7 @@
PATH
remote: ..
specs:
devise (2.2.4)
devise (3.0.0.rc)
bcrypt-ruby (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)

View File

@ -1,3 +1,3 @@
module Devise
VERSION = "2.2.4".freeze
VERSION = "3.0.0.rc".freeze
end