diff --git a/docs/HISTORY.md b/docs/HISTORY.md index be1ce7a..3bed67e 100644 --- a/docs/HISTORY.md +++ b/docs/HISTORY.md @@ -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 diff --git a/ext/cbson/version.h b/ext/cbson/version.h index 809db47..25bafe9 100644 --- a/ext/cbson/version.h +++ b/ext/cbson/version.h @@ -14,4 +14,4 @@ * limitations under the License. */ -#define VERSION "1.1.1" +#define VERSION "1.1.2" diff --git a/lib/bson.rb b/lib/bson.rb index ee538f8..0b71a57 100644 --- a/lib/bson.rb +++ b/lib/bson.rb @@ -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 diff --git a/lib/mongo.rb b/lib/mongo.rb index aa5551e..f1828a1 100644 --- a/lib/mongo.rb +++ b/lib/mongo.rb @@ -3,7 +3,7 @@ $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) module Mongo - VERSION = "1.1.1" + VERSION = "1.1.2" end module Mongo