Skip to content

Commit

Permalink
BUMP 1.1.2 and HISTORY
Browse files Browse the repository at this point in the history
  • Loading branch information
banker committed Nov 4, 2010
1 parent 8125e26 commit 8e79793
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions docs/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# MongoDB Ruby Driver History

### 1.1.2
2010-11-4

* Two critical fixes to automated failover and replica sets.
* Bug passing :timeout to Cursor.
* Permit safe mode specification on Connection, Collection, and DB levels.
* Specify replica set name on connect to verify connection to the right set.
* Misc. reorganization of project and docs.

### 1.1.1
2010-10-14

Expand Down
2 changes: 1 addition & 1 deletion ext/cbson/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

#define VERSION "1.1.1"
#define VERSION "1.1.2"
4 changes: 2 additions & 2 deletions lib/bson.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

MINIMUM_BSON_EXT_VERSION = "1.1.1"
MINIMUM_BSON_EXT_VERSION = "1.1.2"

module BSON
VERSION = "1.1.1"
VERSION = "1.1.2"
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

module Mongo
VERSION = "1.1.1"
VERSION = "1.1.2"
end

module Mongo
Expand Down

0 comments on commit 8e79793

Please sign in to comment.