BUMP 1.2.2
This commit is contained in:
parent
ed44a7490c
commit
c11e875813
|
@ -1,5 +1,11 @@
|
||||||
# MongoDB Ruby Driver History
|
# MongoDB Ruby Driver History
|
||||||
|
|
||||||
|
### 1.2.2
|
||||||
|
2011-2-15
|
||||||
|
|
||||||
|
* Improved replica set failover for edge case.
|
||||||
|
* Fix for REE on OSX (Hongli Lai)
|
||||||
|
|
||||||
### 1.2.1
|
### 1.2.1
|
||||||
2011-1-18
|
2011-1-18
|
||||||
|
|
||||||
|
|
|
@ -14,4 +14,4 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define VERSION "1.2.1"
|
#define VERSION "1.2.2"
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
|
|
||||||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||||
|
|
||||||
MINIMUM_BSON_EXT_VERSION = "1.2.1"
|
MINIMUM_BSON_EXT_VERSION = "1.2.2"
|
||||||
|
|
||||||
module BSON
|
module BSON
|
||||||
VERSION = "1.2.1"
|
VERSION = "1.2.2"
|
||||||
|
|
||||||
if defined? Mongo::DEFAULT_MAX_BSON_SIZE
|
if defined? Mongo::DEFAULT_MAX_BSON_SIZE
|
||||||
DEFAULT_MAX_BSON_SIZE = Mongo::DEFAULT_MAX_BSON_SIZE
|
DEFAULT_MAX_BSON_SIZE = Mongo::DEFAULT_MAX_BSON_SIZE
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||||
|
|
||||||
module Mongo
|
module Mongo
|
||||||
VERSION = "1.2.1"
|
VERSION = "1.2.2"
|
||||||
end
|
end
|
||||||
|
|
||||||
module Mongo
|
module Mongo
|
||||||
|
|
Loading…
Reference in New Issue