1.2.rc0 BUMP for development
This commit is contained in:
parent
191db33a1a
commit
b244c28d1c
|
@ -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'
|
||||
|
||||
|
|
|
@ -14,4 +14,4 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#define VERSION "1.1.5"
|
||||
#define VERSION "1.2.rc0"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||
|
||||
module Mongo
|
||||
VERSION = "1.1.5"
|
||||
VERSION = "1.2.rc0"
|
||||
end
|
||||
|
||||
module Mongo
|
||||
|
|
Loading…
Reference in New Issue