RELEASE 1.6.2

This commit is contained in:
Tyler Brock 2012-04-05 13:28:20 -04:00
parent ca6f4ecaa5
commit 95a831c0b3
5 changed files with 15 additions and 4 deletions

View File

@ -282,7 +282,8 @@ namespace :deploy do
task :git_prepare do |t, args| task :git_prepare do |t, args|
g = Git.open(Dir.getwd()) g = Git.open(Dir.getwd())
version = current_version version = current_version
g.add(VERSION_FILES) to_commit = VERSION_FILES << 'docs/HISTORY.md'
g.add(to_commit)
g.commit "RELEASE #{version}" g.commit "RELEASE #{version}"
g.add_tag("#{version}") g.add_tag("#{version}")
end end

View File

@ -1,5 +1,15 @@
# MongoDB Ruby Driver History # 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 ### 1.6.1
2012-03-07 2012-03-07

View File

@ -14,4 +14,4 @@
* limitations under the License. * limitations under the License.
*/ */
#define VERSION "1.6.1" #define VERSION "1.6.2"

View File

@ -1,3 +1,3 @@
module BSON module BSON
VERSION = "1.6.1" VERSION = "1.6.2"
end end

View File

@ -1,3 +1,3 @@
module Mongo module Mongo
VERSION = "1.6.1" VERSION = "1.6.2"
end end