Skip to content

Commit a0aee12

Browse files
committed
BUMP 1.2.4
1 parent 4f3937d commit a0aee12

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

docs/HISTORY.md

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

3+
### 1.2.4
4+
2011-2-23
5+
6+
* Fix the exception message shown when there's an IOError (malditogeek)
7+
* Another update to map-reduce docs for v1.8. Note that if you use the new
8+
output option {:out => {:inline => true}}, then you must also specify
9+
:raw => true.
10+
311
### 1.2.3
412
2011-2-22
513

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.2.3"
17+
#define VERSION "1.2.4"

lib/bson.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818

1919
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2020

21-
MINIMUM_BSON_EXT_VERSION = "1.2.3"
21+
MINIMUM_BSON_EXT_VERSION = "1.2.4"
2222

2323
module BSON
24-
VERSION = "1.2.3"
24+
VERSION = "1.2.4"
2525

2626
if defined? Mongo::DEFAULT_MAX_BSON_SIZE
2727
DEFAULT_MAX_BSON_SIZE = Mongo::DEFAULT_MAX_BSON_SIZE

lib/mongo.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2020

2121
module Mongo
22-
VERSION = "1.2.3"
22+
VERSION = "1.2.4"
2323
end
2424

2525
module Mongo

0 commit comments

Comments
 (0)