BUMP 0.18.1

This commit is contained in:
Kyle Banker 2009-12-05 09:35:31 -05:00
parent f0766c9d2e
commit f7825eab82
4 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
0.18.1 2009-12-05
* Fixed issue with negative dates in Ruby 1.9
* Minor refactorings for C extension and BSON classes
* Ensure UTF-8 in Ruby 1.8
* Fix for connections on non-default port (Delano Mandelbaum)
* More explicit test suite tasks for running with/without C extension.
0.18 2009-11-25
* Connections now support connection pooling. See http://api.mongodb.org/ruby/0.18/classes/Mongo/Connection.html#M000158
* Deprecated :auto_reconnect option on connection; if the driver fails to

View File

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

View File

@ -4,7 +4,7 @@ module Mongo
ASCENDING = 1
DESCENDING = -1
VERSION = "0.18"
VERSION = "0.18.1"
end
begin

View File

@ -1,6 +1,6 @@
require 'lib/mongo'
VERSION_HEADER = File.open(File.join(File.dirname(__FILE__), 'ext', 'cbson', 'version.h'), "r")
VERSION = VERSION_HEADER.read.scan(/VERSION\s+"(\d+\.\d+)\\/)[0][0]
VERSION = VERSION_HEADER.read.scan(/VERSION\s+"(\d+\.\d+(\.\d+)?)\"/)[0][0]
Gem::Specification.new do |s|
s.name = 'mongo_ext'