File tree 5 files changed +15
-4
lines changed
5 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -282,7 +282,8 @@ namespace :deploy do
282
282
task :git_prepare do |t , args |
283
283
g = Git . open ( Dir . getwd ( ) )
284
284
version = current_version
285
- g . add ( VERSION_FILES )
285
+ to_commit = VERSION_FILES << 'docs/HISTORY.md'
286
+ g . add ( to_commit )
286
287
g . commit "RELEASE #{ version } "
287
288
g . add_tag ( "#{ version } " )
288
289
end
Original file line number Diff line number Diff line change 1
1
# MongoDB Ruby Driver History
2
2
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
+
3
13
### 1.6.1
4
14
2012-03-07
5
15
Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
17
- #define VERSION "1.6.1 "
17
+ #define VERSION "1.6.2 "
Original file line number Diff line number Diff line change 1
1
module BSON
2
- VERSION = "1.6.1 "
2
+ VERSION = "1.6.2 "
3
3
end
Original file line number Diff line number Diff line change 1
1
module Mongo
2
- VERSION = "1.6.1 "
2
+ VERSION = "1.6.2 "
3
3
end
You can’t perform that action at this time.
0 commit comments