CHANGELOG in activesupport-1.0.2 vs CHANGELOG in activesupport-1.0.3
- old
+ new
@@ -1,5 +1,18 @@
-*1.0.2*
+*1.0.3* (27th March, 2005)
+
+* Fixed Inflector.pluralize to handle capitalized words #932 [bitsweat]
+
+* Added Object#suppress which allows you to make a saner choice around with exceptions to swallow #980. Example:
+
+ suppress(ZeroDivisionError) { 1/0 }
+
+ ...instead of:
+
+ 1/0 rescue nil # BAD, EVIL, DIRTY.
+
+
+*1.0.2* (22th March, 2005)
* Added Kernel#returning -- a Ruby-ized realization of the K combinator, courtesy of Mikael Brockman.
def foo
returning values = [] do
\ No newline at end of file