From 648094c80fe2f908452d5e8cbd6d6e015c30f7b9 Mon Sep 17 00:00:00 2001 From: Kyle Banker Date: Tue, 18 Jan 2011 11:20:59 -0500 Subject: [PATCH] BUMP 1.2.0 --- docs/HISTORY.md | 5 +++++ ext/cbson/version.h | 2 +- lib/bson.rb | 4 ++-- lib/mongo.rb | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/HISTORY.md b/docs/HISTORY.md index b2406f0..04ad7bf 100644 --- a/docs/HISTORY.md +++ b/docs/HISTORY.md @@ -1,5 +1,10 @@ # MongoDB Ruby Driver History +1.2.0 +2011-1-18 +* Some minor improvements. See commit history. +* Since nothing major was reported for the RC, we're releasing. + 1.2.rc0 2011-1-5 diff --git a/ext/cbson/version.h b/ext/cbson/version.h index ecb0efe..f43c53c 100644 --- a/ext/cbson/version.h +++ b/ext/cbson/version.h @@ -14,4 +14,4 @@ * limitations under the License. */ -#define VERSION "1.2.rc2" +#define VERSION "1.2.0" diff --git a/lib/bson.rb b/lib/bson.rb index 35c9e64..55baaaf 100644 --- a/lib/bson.rb +++ b/lib/bson.rb @@ -18,10 +18,10 @@ $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) -MINIMUM_BSON_EXT_VERSION = "1.2.rc2" +MINIMUM_BSON_EXT_VERSION = "1.2.0" module BSON - VERSION = "1.2.rc2" + VERSION = "1.2.0" if defined? Mongo::DEFAULT_MAX_BSON_SIZE DEFAULT_MAX_BSON_SIZE = Mongo::DEFAULT_MAX_BSON_SIZE diff --git a/lib/mongo.rb b/lib/mongo.rb index ed3af09..8202d65 100644 --- a/lib/mongo.rb +++ b/lib/mongo.rb @@ -19,7 +19,7 @@ $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) module Mongo - VERSION = "1.2.rc2" + VERSION = "1.2.0" end module Mongo