RELEASE 1.6.2
This commit is contained in:
parent
ca6f4ecaa5
commit
95a831c0b3
3
Rakefile
3
Rakefile
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -14,4 +14,4 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#define VERSION "1.6.1"
|
||||
#define VERSION "1.6.2"
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module BSON
|
||||
VERSION = "1.6.1"
|
||||
VERSION = "1.6.2"
|
||||
end
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module Mongo
|
||||
VERSION = "1.6.1"
|
||||
VERSION = "1.6.2"
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue