BUMP BSON 1.0.5

This commit is contained in:
Kyle Banker 2010-08-24 12:50:37 -04:00
parent c7c309b00d
commit e843891c8a
3 changed files with 5 additions and 5 deletions

View File

@ -14,4 +14,4 @@
* limitations under the License.
*/
#define VERSION "1.0.4"
#define VERSION "1.0.5"

View File

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

View File

@ -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<bson>, [">= 1.0.4"])
s.add_dependency(%q<bson>, [">= 1.0.5"])
end