BUMP 1.0.1
This commit is contained in:
parent
97ee66be02
commit
713cf73b3d
9
HISTORY
9
HISTORY
|
@ -1,3 +1,12 @@
|
|||
1.0.1 2010-5-7
|
||||
|
||||
* set Encoding.default_internal
|
||||
* DEPRECATE JavaScript string on Collection#find. You now must specify $where explicitly.
|
||||
* Added Grid#exist? and GridFileSystem#exist?
|
||||
* Support for replication acknowledgment
|
||||
* Support for $slice
|
||||
* Namespaced OrderedHash under BSON (sleverbor)
|
||||
|
||||
1.0 2010-4-29
|
||||
Note: if upgrading from versions prior to 0.20, be sure to upgrade
|
||||
to 0.20 before upgrading to 1.0.
|
||||
|
|
|
@ -14,4 +14,4 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#define VERSION "1.0"
|
||||
#define VERSION "1.0.1"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||
|
||||
module BSON
|
||||
VERSION = "1.0"
|
||||
VERSION = "1.0.1"
|
||||
def self.serialize(obj, check_keys=false, move_id=false)
|
||||
BSON_CODER.serialize(obj, check_keys, move_id)
|
||||
end
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||
|
||||
module Mongo
|
||||
VERSION = "1.0"
|
||||
VERSION = "1.0.1"
|
||||
end
|
||||
|
||||
module Mongo
|
||||
|
|
Loading…
Reference in New Issue