BUMP 1.0.3

This commit is contained in:
Kyle Banker 2010-06-15 23:05:46 -04:00
parent 76592ac41b
commit bdce8db3e6
4 changed files with 16 additions and 2 deletions

View File

@ -1,3 +1,8 @@
1.0.3 2010-6-15
* Optimiztion for BSON::OrderedHash
* Some important fixes.
1.0.2 2010-6-5 1.0.2 2010-6-5
This is a minor release for fixing an incompatibility with MongoDB v1.5.2 This is a minor release for fixing an incompatibility with MongoDB v1.5.2

View File

@ -21,6 +21,15 @@ Here's a quick code sample. See the MongoDB Ruby Tutorial
= Installation = 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 The driver's gems are hosted at Rubygems.org[http://rubygems.org]. Make sure you're
using the latest version of rubygems: using the latest version of rubygems:

View File

@ -5,7 +5,7 @@ $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
MINIMUM_BSON_EXT_VERSION = "1.0.1" MINIMUM_BSON_EXT_VERSION = "1.0.1"
module BSON module BSON
VERSION = "1.0.2" VERSION = "1.0.3"
def self.serialize(obj, check_keys=false, move_id=false) def self.serialize(obj, check_keys=false, move_id=false)
BSON_CODER.serialize(obj, check_keys, move_id) BSON_CODER.serialize(obj, check_keys, move_id)
end end

View File

@ -3,7 +3,7 @@
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
module Mongo module Mongo
VERSION = "1.0.2" VERSION = "1.0.3"
end end
module Mongo module Mongo