CHANGELOG in activesupport-1.0.1 vs CHANGELOG in activesupport-1.0.2

- old
+ new

@@ -1,4 +1,18 @@ +*1.0.2* + +* Added Kernel#returning -- a Ruby-ized realization of the K combinator, courtesy of Mikael Brockman. + + def foo + returning values = [] do + values << 'bar' + values << 'baz' + end + end + + foo # => ['bar', 'baz'] + + *1.0.1* (7th March, 2005) * Fixed Hash#indifferent_access to also deal with include? and fetch and nested hashes #726 [Nicholas Seckar] * Added Object#blank? -- see http://redhanded.hobix.com/inspect/objectBlank.html #783 [_why the lucky stiff] \ No newline at end of file