BUMP 1.2.4

This commit is contained in:
Kyle Banker 2011-02-23 14:51:49 -05:00
parent 4f3937d6a4
commit a0aee12907
4 changed files with 12 additions and 4 deletions

View File

@ -1,5 +1,13 @@
# 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
2011-2-22

View File

@ -14,4 +14,4 @@
* limitations under the License.
*/
#define VERSION "1.2.3"
#define VERSION "1.2.4"

View File

@ -18,10 +18,10 @@
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
MINIMUM_BSON_EXT_VERSION = "1.2.3"
MINIMUM_BSON_EXT_VERSION = "1.2.4"
module BSON
VERSION = "1.2.3"
VERSION = "1.2.4"
if defined? Mongo::DEFAULT_MAX_BSON_SIZE
DEFAULT_MAX_BSON_SIZE = Mongo::DEFAULT_MAX_BSON_SIZE

View File

@ -19,7 +19,7 @@
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
module Mongo
VERSION = "1.2.3"
VERSION = "1.2.4"
end
module Mongo