Skip to content

Commit

Permalink
Release 1.0.2
Browse files Browse the repository at this point in the history
Use less strict Rails version dependencies. We want it to work on Rails
4.1 too.
  • Loading branch information
gsamokovarov committed Sep 24, 2013
1 parent 8a22579 commit 63fcced
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
@@ -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)]
Expand Down
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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/
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion lib/web_console/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module WebConsole
VERSION = '1.0.1'
VERSION = '1.0.2'
end

0 comments on commit 63fcced

Please sign in to comment.