BUMP 1.0.3
This commit is contained in:
parent
76592ac41b
commit
bdce8db3e6
5
HISTORY
5
HISTORY
|
@ -1,3 +1,8 @@
|
|||
1.0.3 2010-6-15
|
||||
|
||||
* Optimiztion for BSON::OrderedHash
|
||||
* Some important fixes.
|
||||
|
||||
1.0.2 2010-6-5
|
||||
This is a minor release for fixing an incompatibility with MongoDB v1.5.2
|
||||
|
||||
|
|
|
@ -21,6 +21,15 @@ Here's a quick code sample. See the MongoDB Ruby Tutorial
|
|||
|
||||
= Installation
|
||||
|
||||
=== Ruby Versions
|
||||
|
||||
The driver works and is consistently tested on Ruby 1.8.6, 1.8.7, and 1.9.1.
|
||||
|
||||
Note that if you're on 1.8.7, be sure that you're using a patchlevel >= 249. There
|
||||
are some IO bugs in earlier versions.
|
||||
|
||||
=== Gems
|
||||
|
||||
The driver's gems are hosted at Rubygems.org[http://rubygems.org]. Make sure you're
|
||||
using the latest version of rubygems:
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|||
MINIMUM_BSON_EXT_VERSION = "1.0.1"
|
||||
|
||||
module BSON
|
||||
VERSION = "1.0.2"
|
||||
VERSION = "1.0.3"
|
||||
def self.serialize(obj, check_keys=false, move_id=false)
|
||||
BSON_CODER.serialize(obj, check_keys, move_id)
|
||||
end
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||
|
||||
module Mongo
|
||||
VERSION = "1.0.2"
|
||||
VERSION = "1.0.3"
|
||||
end
|
||||
|
||||
module Mongo
|
||||
|
|
Loading…
Reference in New Issue