BUMP 1.3.0.rc0

This commit is contained in:
Kyle Banker 2011-03-29 16:34:53 -04:00
parent 6b9eef0d1f
commit c327a6036d
4 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,7 @@
# MongoDB Ruby Driver History # MongoDB Ruby Driver History
### 1.3.0.rc0 ### 1.3.0.rc0
2011-3-29
* Add option to set timeouts on socket read calls. Use * Add option to set timeouts on socket read calls. Use
the :op_timeout option when creating a new connection. the :op_timeout option when creating a new connection.

View File

@ -14,4 +14,4 @@
* limitations under the License. * limitations under the License.
*/ */
#define VERSION "1.2.4" #define VERSION "1.3.0.rc0"

View File

@ -18,10 +18,10 @@
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
MINIMUM_BSON_EXT_VERSION = "1.2.4" MINIMUM_BSON_EXT_VERSION = "1.3.0.rc0"
module BSON module BSON
VERSION = "1.2.4" VERSION = "1.3.0.rc0"
if defined? Mongo::DEFAULT_MAX_BSON_SIZE if defined? Mongo::DEFAULT_MAX_BSON_SIZE
DEFAULT_MAX_BSON_SIZE = Mongo::DEFAULT_MAX_BSON_SIZE DEFAULT_MAX_BSON_SIZE = Mongo::DEFAULT_MAX_BSON_SIZE

View File

@ -19,7 +19,7 @@
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
module Mongo module Mongo
VERSION = "1.2.4" VERSION = "1.3.0.rc0"
end end
module Mongo module Mongo