BUMP 1.1.4
This commit is contained in:
parent
e4eca05447
commit
8fca10267a
|
@ -1,5 +1,11 @@
|
|||
# MongoDB Ruby Driver History
|
||||
|
||||
### 1.1.4
|
||||
2010-11-30
|
||||
|
||||
* Important connection failure fix.
|
||||
* ObjectId#to_s optimization (David Cuadrado).
|
||||
|
||||
### 1.1.3
|
||||
2010-11-29
|
||||
|
||||
|
|
|
@ -14,4 +14,4 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#define VERSION "1.1.3"
|
||||
#define VERSION "1.1.4"
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
|
||||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||
|
||||
MINIMUM_BSON_EXT_VERSION = "1.1.3"
|
||||
MINIMUM_BSON_EXT_VERSION = "1.1.4"
|
||||
|
||||
module BSON
|
||||
VERSION = "1.1.3"
|
||||
VERSION = "1.1.4"
|
||||
def self.serialize(obj, check_keys=false, move_id=false)
|
||||
BSON_CODER.serialize(obj, check_keys, move_id)
|
||||
end
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||
|
||||
module Mongo
|
||||
VERSION = "1.1.3"
|
||||
VERSION = "1.1.4"
|
||||
end
|
||||
|
||||
module Mongo
|
||||
|
|
Loading…
Reference in New Issue