Skip to content

Commit a4343e5

Browse files
committed
Release 1.6.0
1 parent c802c7e commit a4343e5

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

docs/HISTORY.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# MongoDB Ruby Driver History
22

3+
### 1.6.0
4+
2012-02-22
5+
6+
* Added Gemfile
7+
* ReplSetConnection seed format is now array of 'host:port' strings
8+
* Added read preference :secondary_only
9+
* Added ability to log duration -- enabled by default (Cyril Mougel)
10+
* Added read_only option for DB#add_user (Ariel Salomon)
11+
* Added :collect_on_error option for bulk-insert (Masahiro Nakagawa)
12+
* Added and updated URI options (now case insensitive)
13+
* Bug fix for ReplSet refresh attempting to close a closed socket
14+
* Default op_timeout for ReplSetConnection is now disabled (was 30 seconds)
15+
* Support db output option for map reduce (John Ewart)
16+
* Support for keeping limited versions of files using GridFS (VvanGemert)
17+
318
### 1.5.2
419
2011-12-13
520

ext/cbson/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
* limitations under the License.
1515
*/
1616

17-
#define VERSION "1.5.2"
17+
#define VERSION "1.6.0"

lib/bson.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
# limitations under the License.
1717
# ++
1818

19-
MINIMUM_BSON_EXT_VERSION = "1.5.2"
19+
MINIMUM_BSON_EXT_VERSION = "1.6.0"
2020

2121
module BSON
22-
VERSION = "1.5.2"
22+
VERSION = "1.6.0"
2323

2424
if defined? Mongo::DEFAULT_MAX_BSON_SIZE
2525
DEFAULT_MAX_BSON_SIZE = Mongo::DEFAULT_MAX_BSON_SIZE

lib/mongo/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Mongo
2-
VERSION = "1.5.2"
2+
VERSION = "1.6.0"
33
end

mongo.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
2626
s.rdoc_options = ['--main', 'README.md', '--inline-source']
2727
s.extra_rdoc_files = ['README.md']
2828

29-
s.authors = ['Jim Menard', 'Mike Dirolf', 'Kyle Banker']
29+
s.authors = ['Jim Menard', 'Mike Dirolf', 'Kyle Banker', 'Tyler Brock']
3030
s.email = '[email protected]'
3131
s.homepage = 'http://www.mongodb.org'
3232

0 commit comments

Comments
 (0)