BUMP 0.18.3

This commit is contained in:
Kyle Banker 2010-01-25 13:45:42 -05:00
parent 10dc5daed1
commit 5cdf835811
4 changed files with 22 additions and 2 deletions

View File

@ -29,6 +29,7 @@ Paul Dlug, paul.dlug@gmail.com
Durran Jordan, durran@gmail.com
* DB#collections
* Support for specifying sort order as array of [key, direction] pairs
* OrderedHash#update aliases to merge!
Cyril Mougel, cyril.mougel@gmail.com
* Initial logging support
@ -60,3 +61,9 @@ Christos Trochalakis
Blythe Dunham
* Added finalize option to map/reduce
Matt Powell (fauxparse)
* Added GridStore#mv
Patrick Collison
* Added safe mode for Collection#remove

13
HISTORY
View File

@ -1,3 +1,16 @@
0.18.3 2010-1-25
* Convert docs to YARD
* Support MongoDB extended JSON on ObjectID#to_json
* ObjectID#from_time for performing date range queries on _id (thx., Sunny Hirai)
* GridStore#mv for renaming files (Matt Powell)
* Safe mode for Collection#remove (Patrick Collison)
* Support BSON types MinKey and MaxKey
* DEPRECATED Admin, XMLToRuby, and RegexpOfHolding classes.
* Handle unsupported Numeric types gracefully (Complex, Rational, BigDecimal)
* Handle unsupported Time types gracefully (Date, DateTime, ActiveSupport::TimeWithZone)
* Numerous small bug fixes
* Minor performance improvements
0.18.2 2009-12-29
* Significant GridStore performance improvement (thx., Sunny Hirai)
* Enabled support for keyf on group

View File

@ -14,4 +14,4 @@
* limitations under the License.
*/
#define VERSION "0.18.2"
#define VERSION "0.18.3"

View File

@ -1,7 +1,7 @@
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
module Mongo
VERSION = "0.18.2"
VERSION = "0.18.3"
end
begin