aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index ac27dc640e..3b905b1d24 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Add Integer#positive? and Integer#negative? query methods in the vein of Fixnum#zero?
+ This makes it nicer to do things like bunch_of_numbers.select(&:positive?).
+
+ *DHH*
+
* Encoding ActiveSupport::TimeWithZone to YAML now preserves the timezone information.
Fixes #9183.