Skip to content

Commit 95a831c

Browse files
committed
RELEASE 1.6.2
1 parent ca6f4ec commit 95a831c

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

Rakefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,8 @@ namespace :deploy do
282282
task :git_prepare do |t, args|
283283
g = Git.open(Dir.getwd())
284284
version = current_version
285-
g.add(VERSION_FILES)
285+
to_commit = VERSION_FILES << 'docs/HISTORY.md'
286+
g.add(to_commit)
286287
g.commit "RELEASE #{version}"
287288
g.add_tag("#{version}")
288289
end

docs/HISTORY.md

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

3+
### 1.6.2
4+
2012-04-05
5+
6+
* Implements socket timeouts via non-blocking IO instead of Timeout module
7+
which should greately increase performance in highly threaded applications
8+
* Added ability to authentication via secondary if primary node unavailable
9+
* Replica set refresh interval now enforces a lower bound of 60 seconds
10+
* Added documentation for dropping indexes, collections, databases
11+
* Test output cleanup (...)s unless failure occurs
12+
313
### 1.6.1
414
2012-03-07
515

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.6.1"
17+
#define VERSION "1.6.2"

lib/bson/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module BSON
2-
VERSION = "1.6.1"
2+
VERSION = "1.6.2"
33
end

lib/mongo/version.rb

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

0 commit comments

Comments
 (0)