File tree Expand file tree Collapse file tree 5 files changed +15
-4
lines changed Expand file tree Collapse file tree 5 files changed +15
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
4142012-03-07
515
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17- #define VERSION "1.6.1 "
17+ #define VERSION "1.6.2 "
Original file line number Diff line number Diff line change 11module BSON
2- VERSION = "1.6.1 "
2+ VERSION = "1.6.2 "
33end
Original file line number Diff line number Diff line change 11module Mongo
2- VERSION = "1.6.1 "
2+ VERSION = "1.6.2 "
33end
You can’t perform that action at this time.
0 commit comments