Commit be2f49b2e4aebcfe166f658aaa7b4e930c0e413d

Authored by Andrew Kane
1 parent 8c46a025

Version bump to 2.4.0

CHANGELOG.md
1   -## 2.4.0 [unreleased]
  1 +## 2.4.0
2 2  
3 3 - Added localization
4   -- Fixed issue w/ Brasilia Summer Time
5 4 - Added `carry_forward` option
6   -
7   -## 2.3.1
8   -
9 5 - Added `series: false` option for arrays and hashes
  6 +- Fixed issue w/ Brasilia Summer Time
  7 +- Fixed issues w/ ActiveRecord 4.2
10 8  
11 9 ## 2.3.0
12 10  
... ...
README.md
... ... @@ -175,18 +175,6 @@ mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql
175 175  
176 176 or copy and paste [these statements](https://gist.githubusercontent.com/ankane/1d6b0022173186accbf0/raw/time_zone_support.sql) into a SQL console.
177 177  
178   -#### For JRuby
179   -
180   -Use the master version of your JDBC adapter. You will get incorrect results for versions before [this commit](https://github.com/jruby/activerecord-jdbc-adapter/commit/c1cdb7cec8d3f06fc54995e8d872d830bd0a4d91).
181   -
182   -```ruby
183   -# postgresql
184   -gem "activerecord-jdbcpostgresql-adapter", :github => "jruby/activerecord-jdbc-adapter"
185   -
186   -# mysql
187   -gem "activerecord-jdbcmysql-adapter", :github => "jruby/activerecord-jdbc-adapter"
188   -```
189   -
190 178 ## Upgrading to 2.0
191 179  
192 180 Groupdate 2.0 brings a number a great improvements. Here are two things to be aware of:
... ...
lib/groupdate/version.rb
1 1 module Groupdate
2   - VERSION = "2.3.0"
  2 + VERSION = "2.4.0"
3 3 end
... ...