Skip to content

Commit 8fca102

Browse files
committed
BUMP 1.1.4
1 parent e4eca05 commit 8fca102

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

docs/HISTORY.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# MongoDB Ruby Driver History
22

3+
### 1.1.4
4+
2010-11-30
5+
6+
* Important connection failure fix.
7+
* ObjectId#to_s optimization (David Cuadrado).
8+
39
### 1.1.3
410
2010-11-29
511

ext/cbson/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
* limitations under the License.
1515
*/
1616

17-
#define VERSION "1.1.3"
17+
#define VERSION "1.1.4"

lib/bson.rb

+2-2
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.3"
5+
MINIMUM_BSON_EXT_VERSION = "1.1.4"
66

77
module BSON
8-
VERSION = "1.1.3"
8+
VERSION = "1.1.4"
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

+1-1
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.3"
6+
VERSION = "1.1.4"
77
end
88

99
module Mongo

0 commit comments

Comments
 (0)