Skip to content

Commit

Permalink
BUMP 0.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
banker committed Dec 29, 2009
1 parent e82e81e commit 2087cd4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 3 additions & 2 deletions HISTORY
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
0.18.2 2009-12-21 0.18.2 2009-12-29
* Significant GridStore performance improvement (thx., Sunny Hirai)
* Enabled support for keyf on group * Enabled support for keyf on group
* Signification GridStore performance improvement (thx., Sunny Hirai)
* Support :query option for Collection#distinct * Support :query option for Collection#distinct
* Support :finalize option for Collection#group * Support :finalize option for Collection#group
* (0.18.1) ObjectID#generation_time returns a created_at timestamp. * (0.18.1) ObjectID#generation_time returns a created_at timestamp.
Expand All @@ -9,6 +9,7 @@
* Character encoding fixes for C extension * Character encoding fixes for C extension
* Enforce 4MB limit on document creation * Enforce 4MB limit on document creation
* Simplified connection pooling code * Simplified connection pooling code
* Fixes for connection pooling on Ruby 1.8.6/Windows.


0.18.1 2009-12-05 0.18.1 2009-12-05
* Fixed issue with negative dates in Ruby 1.9 * Fixed issue with negative dates in Ruby 1.9
Expand Down
2 changes: 1 addition & 1 deletion ext/cbson/version.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License. * limitations under the License.
*/ */


#define VERSION "0.18.1" #define VERSION "0.18.2"
2 changes: 1 addition & 1 deletion lib/mongo.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Mongo
ASCENDING = 1 ASCENDING = 1
DESCENDING = -1 DESCENDING = -1


VERSION = "0.18.1" VERSION = "0.18.2"
end end


begin begin
Expand Down
3 changes: 3 additions & 0 deletions lib/mongo/connection.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ def slave_ok?
# this is the number of seconds to wait for a new connection # this is the number of seconds to wait for a new connection
# to be released before throwing an exception. # to be released before throwing an exception.
# #
# Note that there are a few issues when using connection pooling with Ruby 1.9 on Windows. These
# should be resolved in the next release.
#
# === Examples: # === Examples:
# #
# # localhost, 27017 # # localhost, 27017
Expand Down

0 comments on commit 2087cd4

Please sign in to comment.