BUMP 0.18.2
This commit is contained in:
parent
e82e81e6f8
commit
2087cd4286
5
HISTORY
5
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
|
||||
|
@ -14,4 +14,4 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#define VERSION "0.18.1"
|
||||
#define VERSION "0.18.2"
|
||||
|
@ -4,7 +4,7 @@ module Mongo
|
||||
ASCENDING = 1
|
||||
DESCENDING = -1
|
||||
|
||||
VERSION = "0.18.1"
|
||||
VERSION = "0.18.2"
|
||||
end
|
||||
|
||||
begin
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user