Skip to content

Commit 713cf73

Browse files
committed
BUMP 1.0.1
1 parent 97ee66b commit 713cf73

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

HISTORY

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
1.0.1 2010-5-7
2+
3+
* set Encoding.default_internal
4+
* DEPRECATE JavaScript string on Collection#find. You now must specify $where explicitly.
5+
* Added Grid#exist? and GridFileSystem#exist?
6+
* Support for replication acknowledgment
7+
* Support for $slice
8+
* Namespaced OrderedHash under BSON (sleverbor)
9+
110
1.0 2010-4-29
211
Note: if upgrading from versions prior to 0.20, be sure to upgrade
312
to 0.20 before upgrading to 1.0.

ext/cbson/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
* limitations under the License.
1515
*/
1616

17-
#define VERSION "1.0"
17+
#define VERSION "1.0.1"

lib/bson.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
44

55
module BSON
6-
VERSION = "1.0"
6+
VERSION = "1.0.1"
77
def self.serialize(obj, check_keys=false, move_id=false)
88
BSON_CODER.serialize(obj, check_keys, move_id)
99
end

lib/mongo.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
44

55
module Mongo
6-
VERSION = "1.0"
6+
VERSION = "1.0.1"
77
end
88

99
module Mongo

0 commit comments

Comments
 (0)