Skip to content

Commit b8463a0

Browse files
committed
RELEASE 1.6.3
1 parent 9be394b commit b8463a0

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

docs/HISTORY.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
# MongoDB Ruby Driver History
22

3+
### 1.6.3
4+
2012-06-05
5+
6+
* Performance measurements and enhancements (especially for C-extensions)
7+
* Bug fixes for checking strings with non UTF-8 forced or implied encodings
8+
* Added refresh support for multiple threaded instances of ReplSetConnection
9+
* Added ability to handle IRB::Abort Exception (ctrl-c) cleanly
10+
* Added support for large dates on 32-bit platforms (Ruby 1.9+)
11+
* Added #to_ary method for BSON::ObjectId (Farrel Lifson)
12+
* Added support for ENV['MONGODB_URI'] (Seamus Abshere)
13+
* Various gridio bug fixes (John Bintz)
14+
* Various logging support improvements
15+
* Various documentation improvements (tutorials, sorting, links)
16+
317
### 1.6.2
418
2012-04-05
519

620
* Implements socket timeouts via non-blocking IO instead of Timeout module
7-
which should greately increase performance in highly threaded applications
21+
which should greatly increase performance in highly threaded applications
822
* Added ability to authentication via secondary if primary node unavailable
923
* Replica set refresh interval now enforces a lower bound of 60 seconds
1024
* Added documentation for dropping indexes, collections, databases

docs/RELEASES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Before each relese to Rubygems.org, the following steps will be taken:
2828

2929
3. Update the version in lib/bson.rb, lib/mongo/version.rb, and ext/version.h.
3030

31-
4. Commit: "Release [VERSION]"
31+
4. Commit: "RELEASE [VERSION]"
3232

3333
5. git tag [version]
3434

ext/cbson/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
* limitations under the License.
1515
*/
1616

17-
#define VERSION "1.6.2"
17+
#define VERSION "1.6.3"

lib/bson/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module BSON
2-
VERSION = "1.6.2"
2+
VERSION = "1.6.3"
33
end

lib/mongo/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Mongo
2-
VERSION = "1.6.2"
2+
VERSION = "1.6.3"
33
end

0 commit comments

Comments
 (0)