Skip to content

Commit

Permalink
1.2.rc0 BUMP for development
Browse files Browse the repository at this point in the history
  • Loading branch information
banker committed Dec 29, 2010
1 parent 191db33 commit b244c28
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bson_ext.gemspec
Original file line number Diff line number Diff line change
@@ -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'

Expand Down
2 changes: 1 addition & 1 deletion ext/cbson/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

#define VERSION "1.1.5"
#define VERSION "1.2.rc0"
4 changes: 2 additions & 2 deletions lib/bson.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/mongo.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

module Mongo
VERSION = "1.1.5"
VERSION = "1.2.rc0"
end

module Mongo
Expand Down

0 comments on commit b244c28

Please sign in to comment.