diff --git a/CHANGELOG.md b/CHANGELOG.md index e9a2095..2dd21b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,7 @@ -## master +## 1.0.0 * Improve controller generator to work closer to the Rails 4 one, and make it compatible with strong parameters. - -## 1.0.0.rc - * Drop support for Rails 3.1 and Ruby 1.8, keep support for Rails 3.2 * Support for Rails 4.0 onward * Fix flash message on destroy failure. Fixes #61 diff --git a/Gemfile.lock b/Gemfile.lock index b4bdc7b..53ebf0c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - responders (1.0.0.rc) + responders (1.0.0) railties (>= 3.2, < 5) GEM diff --git a/lib/responders/version.rb b/lib/responders/version.rb index b1b58f5..68ffdf6 100644 --- a/lib/responders/version.rb +++ b/lib/responders/version.rb @@ -1,3 +1,3 @@ module Responders - VERSION = "1.0.0.rc".freeze + VERSION = "1.0.0".freeze end