Skip to content

Commit

Permalink
RELEASE 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerBrock committed Apr 5, 2012
1 parent ca6f4ec commit 95a831c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Rakefile
Expand Up @@ -282,7 +282,8 @@ namespace :deploy do
task :git_prepare do |t, args|
g = Git.open(Dir.getwd())
version = current_version
g.add(VERSION_FILES)
to_commit = VERSION_FILES << 'docs/HISTORY.md'
g.add(to_commit)
g.commit "RELEASE #{version}"
g.add_tag("#{version}")
end
Expand Down
10 changes: 10 additions & 0 deletions docs/HISTORY.md
@@ -1,5 +1,15 @@
# MongoDB Ruby Driver History

### 1.6.2
2012-04-05

* Implements socket timeouts via non-blocking IO instead of Timeout module
which should greately increase performance in highly threaded applications
* Added ability to authentication via secondary if primary node unavailable
* Replica set refresh interval now enforces a lower bound of 60 seconds
* Added documentation for dropping indexes, collections, databases
* Test output cleanup (...)s unless failure occurs

### 1.6.1
2012-03-07

Expand Down
2 changes: 1 addition & 1 deletion ext/cbson/version.h
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

#define VERSION "1.6.1"
#define VERSION "1.6.2"
2 changes: 1 addition & 1 deletion lib/bson/version.rb
@@ -1,3 +1,3 @@
module BSON
VERSION = "1.6.1"
VERSION = "1.6.2"
end
2 changes: 1 addition & 1 deletion lib/mongo/version.rb
@@ -1,3 +1,3 @@
module Mongo
VERSION = "1.6.1"
VERSION = "1.6.2"
end

0 comments on commit 95a831c

Please sign in to comment.