BUMP 1.2.4
This commit is contained in:
parent
4f3937d6a4
commit
a0aee12907
|
@ -1,5 +1,13 @@
|
||||||
# MongoDB Ruby Driver History
|
# MongoDB Ruby Driver History
|
||||||
|
|
||||||
|
### 1.2.4
|
||||||
|
2011-2-23
|
||||||
|
|
||||||
|
* Fix the exception message shown when there's an IOError (malditogeek)
|
||||||
|
* Another update to map-reduce docs for v1.8. Note that if you use the new
|
||||||
|
output option {:out => {:inline => true}}, then you must also specify
|
||||||
|
:raw => true.
|
||||||
|
|
||||||
### 1.2.3
|
### 1.2.3
|
||||||
2011-2-22
|
2011-2-22
|
||||||
|
|
||||||
|
|
|
@ -14,4 +14,4 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define VERSION "1.2.3"
|
#define VERSION "1.2.4"
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
|
|
||||||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||||
|
|
||||||
MINIMUM_BSON_EXT_VERSION = "1.2.3"
|
MINIMUM_BSON_EXT_VERSION = "1.2.4"
|
||||||
|
|
||||||
module BSON
|
module BSON
|
||||||
VERSION = "1.2.3"
|
VERSION = "1.2.4"
|
||||||
|
|
||||||
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.3"
|
VERSION = "1.2.4"
|
||||||
end
|
end
|
||||||
|
|
||||||
module Mongo
|
module Mongo
|
||||||
|
|
Loading…
Reference in New Issue