diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2016-02-01 14:27:38 -0700 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2016-02-01 14:37:52 -0700 |
commit | 49f6ce63f33b7817bcbd0cdf5f8881b63f40d9c9 (patch) | |
tree | 454e81ebf8d0697aabde55c265fdf15a8cf0437b /activesupport | |
parent | 633969f159c4f1ff23d98ec6e25cf84a78994824 (diff) | |
download | rails-49f6ce63f33b7817bcbd0cdf5f8881b63f40d9c9.tar.gz rails-49f6ce63f33b7817bcbd0cdf5f8881b63f40d9c9.tar.bz2 rails-49f6ce63f33b7817bcbd0cdf5f8881b63f40d9c9.zip |
Preparing for Rails 5.0.0.beta2
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 5 | ||||
-rw-r--r-- | activesupport/lib/active_support/gem_version.rb | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 8cff374a47..d20617a194 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,3 +1,8 @@ +## Rails 5.0.0.beta2 (February 01, 2016) ## + +* No changes. + + * Change number_to_currency behavior for checking negativity. Used `to_f.negative` instead of using `to_f.phase` for checking negativity diff --git a/activesupport/lib/active_support/gem_version.rb b/activesupport/lib/active_support/gem_version.rb index 3104d0e00f..fc08273b6d 100644 --- a/activesupport/lib/active_support/gem_version.rb +++ b/activesupport/lib/active_support/gem_version.rb @@ -8,7 +8,7 @@ module ActiveSupport MAJOR = 5 MINOR = 0 TINY = 0 - PRE = "beta1.1" + PRE = "beta2" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end |