From 2087cd42860e27bfb914dcaf3d73c0778e1a2970 Mon Sep 17 00:00:00 2001 From: Kyle Banker Date: Tue, 29 Dec 2009 17:32:10 -0500 Subject: [PATCH] BUMP 0.18.2 --- HISTORY | 5 +++-- ext/cbson/version.h | 2 +- lib/mongo.rb | 2 +- lib/mongo/connection.rb | 3 +++ 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/HISTORY b/HISTORY index 7a19684..e62ecb9 100644 --- a/HISTORY +++ b/HISTORY @@ -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 -* Signification GridStore performance improvement (thx., Sunny Hirai) * Support :query option for Collection#distinct * Support :finalize option for Collection#group * (0.18.1) ObjectID#generation_time returns a created_at timestamp. @@ -9,6 +9,7 @@ * Character encoding fixes for C extension * Enforce 4MB limit on document creation * Simplified connection pooling code +* Fixes for connection pooling on Ruby 1.8.6/Windows. 0.18.1 2009-12-05 * Fixed issue with negative dates in Ruby 1.9 diff --git a/ext/cbson/version.h b/ext/cbson/version.h index 0372fed..8f8a0ba 100644 --- a/ext/cbson/version.h +++ b/ext/cbson/version.h @@ -14,4 +14,4 @@ * limitations under the License. */ -#define VERSION "0.18.1" +#define VERSION "0.18.2" diff --git a/lib/mongo.rb b/lib/mongo.rb index f9d37ed..dd44353 100644 --- a/lib/mongo.rb +++ b/lib/mongo.rb @@ -4,7 +4,7 @@ module Mongo ASCENDING = 1 DESCENDING = -1 - VERSION = "0.18.1" + VERSION = "0.18.2" end begin diff --git a/lib/mongo/connection.rb b/lib/mongo/connection.rb index 1d47714..9b5d1ba 100644 --- a/lib/mongo/connection.rb +++ b/lib/mongo/connection.rb @@ -70,6 +70,9 @@ module Mongo # this is the number of seconds to wait for a new connection # 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: # # # localhost, 27017