From b0f2911170bd47f0079b198c2b7f8a4d6964275a Mon Sep 17 00:00:00 2001 From: Kyle Banker Date: Thu, 7 Oct 2010 17:59:12 -0400 Subject: [PATCH] BUMP 1.1.1 --- HISTORY | 4 ++++ ext/cbson/version.h | 2 +- lib/bson.rb | 4 ++-- lib/mongo.rb | 2 +- mongo.gemspec | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/HISTORY b/HISTORY index 11a73f4..0199176 100644 --- a/HISTORY +++ b/HISTORY @@ -1,3 +1,7 @@ +1.1.1 2010-10-7 +* Critical JRuby bug fix RUBY-185 +* Check keys and move id only when necessary for JRuby encoder + 1.1 2010-10-4 * Official JRuby support via Java extensons for BSON (beta) * Connection#lock! and Connection#unlock! for easy fsync lock diff --git a/ext/cbson/version.h b/ext/cbson/version.h index f022a93..809db47 100644 --- a/ext/cbson/version.h +++ b/ext/cbson/version.h @@ -14,4 +14,4 @@ * limitations under the License. */ -#define VERSION "1.1" +#define VERSION "1.1.1" diff --git a/lib/bson.rb b/lib/bson.rb index 2dde5be..a405c2a 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" +MINIMUM_BSON_EXT_VERSION = "1.1.1" module BSON - VERSION = "1.1" + VERSION = "1.1.1" 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 0edf1fb..3fd3d58 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" + VERSION = "1.1.1" end module Mongo diff --git a/mongo.gemspec b/mongo.gemspec index 3f5dea5..6670f01 100644 --- a/mongo.gemspec +++ b/mongo.gemspec @@ -32,5 +32,5 @@ Gem::Specification.new do |s| s.email = 'mongodb-dev@googlegroups.com' s.homepage = 'http://www.mongodb.org' - s.add_dependency(%q, [">= 1.0.5"]) + s.add_dependency(%q, [">= 1.1.1"]) end