From b244c28d1c551db2d0ce089dc16a75afe0c02683 Mon Sep 17 00:00:00 2001 From: Kyle Banker Date: Fri, 17 Dec 2010 14:10:09 -0500 Subject: [PATCH] 1.2.rc0 BUMP for development --- bson_ext.gemspec | 2 +- ext/cbson/version.h | 2 +- lib/bson.rb | 4 ++-- lib/mongo.rb | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bson_ext.gemspec b/bson_ext.gemspec index 86e7907..c2549a6 100644 --- a/bson_ext.gemspec +++ b/bson_ext.gemspec @@ -1,6 +1,6 @@ require './lib/bson' VERSION_HEADER = File.open(File.join(File.dirname(__FILE__), 'ext', 'cbson', 'version.h'), "r") -VERSION = VERSION_HEADER.read.scan(/VERSION\s+"(\d+\.\d+(\.\d+\w*)?)\"/)[0][0] +VERSION = VERSION_HEADER.read.scan(/VERSION\s+"(\d+\.\d+(\.[\w\d]+\w*)?)\"/)[0][0] Gem::Specification.new do |s| s.name = 'bson_ext' diff --git a/ext/cbson/version.h b/ext/cbson/version.h index 78750c4..e10caae 100644 --- a/ext/cbson/version.h +++ b/ext/cbson/version.h @@ -14,4 +14,4 @@ * limitations under the License. */ -#define VERSION "1.1.5" +#define VERSION "1.2.rc0" diff --git a/lib/bson.rb b/lib/bson.rb index 6e75733..556f568 100644 --- a/lib/bson.rb +++ b/lib/bson.rb @@ -2,10 +2,10 @@ $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) -MINIMUM_BSON_EXT_VERSION = "1.1.5" +MINIMUM_BSON_EXT_VERSION = "1.2.rc0" module BSON - VERSION = "1.1.5" + VERSION = "1.2.rc0" def self.serialize(obj, check_keys=false, move_id=false) BSON_CODER.serialize(obj, check_keys, move_id) end diff --git a/lib/mongo.rb b/lib/mongo.rb index 20e5cdb..09f676c 100644 --- a/lib/mongo.rb +++ b/lib/mongo.rb @@ -3,7 +3,7 @@ $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) module Mongo - VERSION = "1.1.5" + VERSION = "1.2.rc0" end module Mongo