From 63fcceda296af40a33811c54c8522f19071cac08 Mon Sep 17 00:00:00 2001 From: Genadi Samokovarov Date: Tue, 24 Sep 2013 18:53:31 +0300 Subject: [PATCH] Release 1.0.2 Use less strict Rails version dependencies. We want it to work on Rails 4.1 too. --- CHANGELOG.markdown | 4 ++++ Gemfile.lock | 12 ++++++------ README.markdown | 2 +- lib/web_console/version.rb | 2 +- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index a95aeff3..10bb32b9 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -1,5 +1,9 @@ # CHANGELOG +## 1.0.2 (September 24, 2013) + +* Depend on Rails 4.\* instead of 4.0.\*. + ## 1.0.1 (September 20, 2013 * Break the rails meta-package dependency. [[#5](https://github.com/rails/web-console/pull/5)] diff --git a/Gemfile.lock b/Gemfile.lock index ae0bc33d..922de3c2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,10 +1,10 @@ PATH remote: . specs: - web-console (1.0.1) - activemodel (~> 4.0.0) - railties (~> 4.0.0) - sprockets-rails (~> 2.0.0) + web-console (1.0.2) + activemodel (~> 4.0) + railties (~> 4.0) + sprockets-rails (~> 2.0) GEM remote: https://rubygems.org/ @@ -118,8 +118,8 @@ PLATFORMS ruby DEPENDENCIES - actionmailer (~> 4.0.0) - activerecord (~> 4.0.0) + actionmailer (~> 4.0) + activerecord (~> 4.0) activerecord-jdbcsqlite3-adapter mocha pry-rails diff --git a/README.markdown b/README.markdown index 61662901..4ff1db57 100644 --- a/README.markdown +++ b/README.markdown @@ -44,7 +44,7 @@ To install it in your current application, add the following to your `Gemfile`. ```ruby group :development do - gem 'web-console', '~> 1.0.1' + gem 'web-console', '~> 1.0.2' end ``` diff --git a/lib/web_console/version.rb b/lib/web_console/version.rb index 12cd4b5c..962dcd50 100644 --- a/lib/web_console/version.rb +++ b/lib/web_console/version.rb @@ -1,3 +1,3 @@ module WebConsole - VERSION = '1.0.1' + VERSION = '1.0.2' end