BUMP 0.18.2

This commit is contained in:
Kyle Banker 2009-12-29 17:32:10 -05:00
parent e82e81e6f8
commit 2087cd4286
4 changed files with 8 additions and 4 deletions

View File

@ -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.
@ -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

View File

@ -14,4 +14,4 @@
* limitations under the License. * limitations under the License.
*/ */
#define VERSION "0.18.1" #define VERSION "0.18.2"

View File

@ -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

View File

@ -70,6 +70,9 @@ module Mongo
# 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