Release 1.6.0
This commit is contained in:
parent
c802c7eba3
commit
a4343e53fe
|
@ -1,5 +1,20 @@
|
||||||
# MongoDB Ruby Driver History
|
# MongoDB Ruby Driver History
|
||||||
|
|
||||||
|
### 1.6.0
|
||||||
|
2012-02-22
|
||||||
|
|
||||||
|
* Added Gemfile
|
||||||
|
* ReplSetConnection seed format is now array of 'host:port' strings
|
||||||
|
* Added read preference :secondary_only
|
||||||
|
* Added ability to log duration -- enabled by default (Cyril Mougel)
|
||||||
|
* Added read_only option for DB#add_user (Ariel Salomon)
|
||||||
|
* Added :collect_on_error option for bulk-insert (Masahiro Nakagawa)
|
||||||
|
* Added and updated URI options (now case insensitive)
|
||||||
|
* Bug fix for ReplSet refresh attempting to close a closed socket
|
||||||
|
* Default op_timeout for ReplSetConnection is now disabled (was 30 seconds)
|
||||||
|
* Support db output option for map reduce (John Ewart)
|
||||||
|
* Support for keeping limited versions of files using GridFS (VvanGemert)
|
||||||
|
|
||||||
### 1.5.2
|
### 1.5.2
|
||||||
2011-12-13
|
2011-12-13
|
||||||
|
|
||||||
|
|
|
@ -14,4 +14,4 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define VERSION "1.5.2"
|
#define VERSION "1.6.0"
|
||||||
|
|
|
@ -16,10 +16,10 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
# ++
|
# ++
|
||||||
|
|
||||||
MINIMUM_BSON_EXT_VERSION = "1.5.2"
|
MINIMUM_BSON_EXT_VERSION = "1.6.0"
|
||||||
|
|
||||||
module BSON
|
module BSON
|
||||||
VERSION = "1.5.2"
|
VERSION = "1.6.0"
|
||||||
|
|
||||||
if defined? Mongo::DEFAULT_MAX_BSON_SIZE
|
if defined? Mongo::DEFAULT_MAX_BSON_SIZE
|
||||||
DEFAULT_MAX_BSON_SIZE = Mongo::DEFAULT_MAX_BSON_SIZE
|
DEFAULT_MAX_BSON_SIZE = Mongo::DEFAULT_MAX_BSON_SIZE
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module Mongo
|
module Mongo
|
||||||
VERSION = "1.5.2"
|
VERSION = "1.6.0"
|
||||||
end
|
end
|
||||||
|
|
|
@ -26,7 +26,7 @@ Gem::Specification.new do |s|
|
||||||
s.rdoc_options = ['--main', 'README.md', '--inline-source']
|
s.rdoc_options = ['--main', 'README.md', '--inline-source']
|
||||||
s.extra_rdoc_files = ['README.md']
|
s.extra_rdoc_files = ['README.md']
|
||||||
|
|
||||||
s.authors = ['Jim Menard', 'Mike Dirolf', 'Kyle Banker']
|
s.authors = ['Jim Menard', 'Mike Dirolf', 'Kyle Banker', 'Tyler Brock']
|
||||||
s.email = 'mongodb-dev@googlegroups.com'
|
s.email = 'mongodb-dev@googlegroups.com'
|
||||||
s.homepage = 'http://www.mongodb.org'
|
s.homepage = 'http://www.mongodb.org'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue