BUMP 0.18.3
This commit is contained in:
parent
10dc5daed1
commit
5cdf835811
7
CREDITS
7
CREDITS
@ -29,6 +29,7 @@ Paul Dlug, paul.dlug@gmail.com
|
|||||||
Durran Jordan, durran@gmail.com
|
Durran Jordan, durran@gmail.com
|
||||||
* DB#collections
|
* DB#collections
|
||||||
* Support for specifying sort order as array of [key, direction] pairs
|
* Support for specifying sort order as array of [key, direction] pairs
|
||||||
|
* OrderedHash#update aliases to merge!
|
||||||
|
|
||||||
Cyril Mougel, cyril.mougel@gmail.com
|
Cyril Mougel, cyril.mougel@gmail.com
|
||||||
* Initial logging support
|
* Initial logging support
|
||||||
@ -60,3 +61,9 @@ Christos Trochalakis
|
|||||||
|
|
||||||
Blythe Dunham
|
Blythe Dunham
|
||||||
* Added finalize option to map/reduce
|
* Added finalize option to map/reduce
|
||||||
|
|
||||||
|
Matt Powell (fauxparse)
|
||||||
|
* Added GridStore#mv
|
||||||
|
|
||||||
|
Patrick Collison
|
||||||
|
* Added safe mode for Collection#remove
|
||||||
|
13
HISTORY
13
HISTORY
@ -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
|
0.18.2 2009-12-29
|
||||||
* Significant GridStore performance improvement (thx., Sunny Hirai)
|
* Significant GridStore performance improvement (thx., Sunny Hirai)
|
||||||
* Enabled support for keyf on group
|
* Enabled support for keyf on group
|
||||||
|
@ -14,4 +14,4 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define VERSION "0.18.2"
|
#define VERSION "0.18.3"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||||
|
|
||||||
module Mongo
|
module Mongo
|
||||||
VERSION = "0.18.2"
|
VERSION = "0.18.3"
|
||||||
end
|
end
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user