BUMP 1.1.1
This commit is contained in:
parent
6afb862d17
commit
b0f2911170
4
HISTORY
4
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
|
1.1 2010-10-4
|
||||||
* Official JRuby support via Java extensons for BSON (beta)
|
* Official JRuby support via Java extensons for BSON (beta)
|
||||||
* Connection#lock! and Connection#unlock! for easy fsync lock
|
* Connection#lock! and Connection#unlock! for easy fsync lock
|
||||||
|
|
|
@ -14,4 +14,4 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define VERSION "1.1"
|
#define VERSION "1.1.1"
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
|
|
||||||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||||
|
|
||||||
MINIMUM_BSON_EXT_VERSION = "1.1"
|
MINIMUM_BSON_EXT_VERSION = "1.1.1"
|
||||||
|
|
||||||
module BSON
|
module BSON
|
||||||
VERSION = "1.1"
|
VERSION = "1.1.1"
|
||||||
def self.serialize(obj, check_keys=false, move_id=false)
|
def self.serialize(obj, check_keys=false, move_id=false)
|
||||||
BSON_CODER.serialize(obj, check_keys, move_id)
|
BSON_CODER.serialize(obj, check_keys, move_id)
|
||||||
end
|
end
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||||
|
|
||||||
module Mongo
|
module Mongo
|
||||||
VERSION = "1.1"
|
VERSION = "1.1.1"
|
||||||
end
|
end
|
||||||
|
|
||||||
module Mongo
|
module Mongo
|
||||||
|
|
|
@ -32,5 +32,5 @@ Gem::Specification.new do |s|
|
||||||
s.email = 'mongodb-dev@googlegroups.com'
|
s.email = 'mongodb-dev@googlegroups.com'
|
||||||
s.homepage = 'http://www.mongodb.org'
|
s.homepage = 'http://www.mongodb.org'
|
||||||
|
|
||||||
s.add_dependency(%q<bson>, [">= 1.0.5"])
|
s.add_dependency(%q<bson>, [">= 1.1.1"])
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue