Skip to content

Commit 8e79793

Browse files
committed
BUMP 1.1.2 and HISTORY
1 parent 8125e26 commit 8e79793

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

docs/HISTORY.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# MongoDB Ruby Driver History
22

3+
### 1.1.2
4+
2010-11-4
5+
6+
* Two critical fixes to automated failover and replica sets.
7+
* Bug passing :timeout to Cursor.
8+
* Permit safe mode specification on Connection, Collection, and DB levels.
9+
* Specify replica set name on connect to verify connection to the right set.
10+
* Misc. reorganization of project and docs.
11+
312
### 1.1.1
413
2010-10-14
514

ext/cbson/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
* limitations under the License.
1515
*/
1616

17-
#define VERSION "1.1.1"
17+
#define VERSION "1.1.2"

lib/bson.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

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

5-
MINIMUM_BSON_EXT_VERSION = "1.1.1"
5+
MINIMUM_BSON_EXT_VERSION = "1.1.2"
66

77
module BSON
8-
VERSION = "1.1.1"
8+
VERSION = "1.1.2"
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.1.1"
6+
VERSION = "1.1.2"
77
end
88

99
module Mongo

0 commit comments

Comments
 (0)