1.2.rc0 BUMP for development

This commit is contained in:
Kyle Banker 2010-12-17 14:10:09 -05:00
parent 191db33a1a
commit b244c28d1c
4 changed files with 5 additions and 5 deletions

View File

@ -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'

View File

@ -14,4 +14,4 @@
* limitations under the License.
*/
#define VERSION "1.1.5"
#define VERSION "1.2.rc0"

View File

@ -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

View File

@ -3,7 +3,7 @@
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
module Mongo
VERSION = "1.1.5"
VERSION = "1.2.rc0"
end
module Mongo