Skip to content

Commit bdce8db

Browse files
committed
BUMP 1.0.3
1 parent 76592ac commit bdce8db

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

HISTORY

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.0.3 2010-6-15
2+
3+
* Optimiztion for BSON::OrderedHash
4+
* Some important fixes.
5+
16
1.0.2 2010-6-5
27
This is a minor release for fixing an incompatibility with MongoDB v1.5.2
38

README.rdoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,15 @@ Here's a quick code sample. See the MongoDB Ruby Tutorial
2121

2222
= Installation
2323

24+
=== Ruby Versions
25+
26+
The driver works and is consistently tested on Ruby 1.8.6, 1.8.7, and 1.9.1.
27+
28+
Note that if you're on 1.8.7, be sure that you're using a patchlevel >= 249. There
29+
are some IO bugs in earlier versions.
30+
31+
=== Gems
32+
2433
The driver's gems are hosted at Rubygems.org[http://rubygems.org]. Make sure you're
2534
using the latest version of rubygems:
2635

lib/bson.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
MINIMUM_BSON_EXT_VERSION = "1.0.1"
66

77
module BSON
8-
VERSION = "1.0.2"
8+
VERSION = "1.0.3"
99
def self.serialize(obj, check_keys=false, move_id=false)
1010
BSON_CODER.serialize(obj, check_keys, move_id)
1111
end

lib/mongo.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
44

55
module Mongo
6-
VERSION = "1.0.2"
6+
VERSION = "1.0.3"
77
end
88

99
module Mongo

0 commit comments

Comments
 (0)