Skip to content

Commit

Permalink
BUMP 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
banker committed Jun 16, 2010
1 parent 76592ac commit bdce8db
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
5 changes: 5 additions & 0 deletions 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

Expand Down
9 changes: 9 additions & 0 deletions README.rdoc
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion lib/bson.rb
Expand Up @@ -5,7 +5,7 @@
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
Expand Down
2 changes: 1 addition & 1 deletion lib/mongo.rb
Expand Up @@ -3,7 +3,7 @@
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

module Mongo
VERSION = "1.0.2"
VERSION = "1.0.3"
end

module Mongo
Expand Down

0 comments on commit bdce8db

Please sign in to comment.