From e843891c8aec6aab1273a9f6aed7c4387a7ed715 Mon Sep 17 00:00:00 2001 From: Kyle Banker Date: Tue, 24 Aug 2010 12:50:37 -0400 Subject: [PATCH] BUMP BSON 1.0.5 --- ext/cbson/version.h | 2 +- lib/bson.rb | 4 ++-- mongo.gemspec | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ext/cbson/version.h b/ext/cbson/version.h index b74a7d1..ada413f 100644 --- a/ext/cbson/version.h +++ b/ext/cbson/version.h @@ -14,4 +14,4 @@ * limitations under the License. */ -#define VERSION "1.0.4" +#define VERSION "1.0.5" diff --git a/lib/bson.rb b/lib/bson.rb index 3484dba..03742dd 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.0.4" +MINIMUM_BSON_EXT_VERSION = "1.0.5" module BSON - VERSION = "1.0.4" + VERSION = "1.0.5" def self.serialize(obj, check_keys=false, move_id=false) BSON_CODER.serialize(obj, check_keys, move_id) end diff --git a/mongo.gemspec b/mongo.gemspec index 1a832dc..3769939 100644 --- a/mongo.gemspec +++ b/mongo.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |s| s.files = ['README.rdoc', 'HISTORY', 'Rakefile', 'mongo.gemspec', 'LICENSE.txt'] - s.files += ['lib/mongo.rb'] + Dir['lib/mongo/**/*.rb'] +v s.files += ['lib/mongo.rb'] + Dir['lib/mongo/**/*.rb'] s.files += Dir['examples/**/*.rb'] + Dir['bin/**/*.rb'] s.test_files = Dir['test/**/*.rb'] @@ -29,5 +29,5 @@ Gem::Specification.new do |s| s.email = 'mongodb-dev@googlegroups.com' s.homepage = 'http://www.mongodb.org' - s.add_dependency(%q, [">= 1.0.4"]) + s.add_dependency(%q, [">= 1.0.5"]) end