Skip to content

Commit

Permalink
v0.2.6, also fix travis Gemfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
jenseng committed Mar 25, 2014
1 parent 2559253 commit aadab5e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## 0.2.x

### 0.2.6

* Ruby 2.1 support
* Fix `HairTrigger::migrations_current?` bug ([#25](/jenseng/hair_trigger/issues/25))

### 0.2.5

* Update ruby_parser dependency
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.activerecord-2.3.x
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source "http://rubygems.org"

gem "activerecord", "~> 2.3.0"
gem 'ruby_parser', '~> 3.2.2'
gem 'ruby_parser', '>= 3.5'
gem 'ruby2ruby', '~> 2.0.6'
group :test do
gem 'rake'
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.activerecord-3.0.x
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source "http://rubygems.org"

gem "activerecord", "~> 3.0.0"
gem 'ruby_parser', '~> 3.2.2'
gem 'ruby_parser', '>= 3.5'
gem 'ruby2ruby', '~> 2.0.6'
group :test do
gem 'rake'
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.activerecord-3.2.x
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source "http://rubygems.org"

gem "activerecord", "~> 3.2.0"
gem 'ruby_parser', '~> 3.2.2'
gem 'ruby_parser', '>= 3.5'
gem 'ruby2ruby', '~> 2.0.6'
group :test do
gem 'rake'
Expand Down
2 changes: 1 addition & 1 deletion lib/hair_trigger/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module HairTrigger
VERSION = "0.2.5"
VERSION = "0.2.6"

def VERSION.<=>(other)
split(/\./).map(&:to_i) <=> other.split(/\./).map(&:to_i)
Expand Down

0 comments on commit aadab5e

Please sign in to comment.