BUMP 1.3.0.rc0
This commit is contained in:
parent
6b9eef0d1f
commit
c327a6036d
|
@ -1,6 +1,7 @@
|
|||
# MongoDB Ruby Driver History
|
||||
|
||||
### 1.3.0.rc0
|
||||
2011-3-29
|
||||
|
||||
* Add option to set timeouts on socket read calls. Use
|
||||
the :op_timeout option when creating a new connection.
|
||||
|
|
|
@ -14,4 +14,4 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#define VERSION "1.2.4"
|
||||
#define VERSION "1.3.0.rc0"
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
|
||||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||
|
||||
MINIMUM_BSON_EXT_VERSION = "1.2.4"
|
||||
MINIMUM_BSON_EXT_VERSION = "1.3.0.rc0"
|
||||
|
||||
module BSON
|
||||
VERSION = "1.2.4"
|
||||
VERSION = "1.3.0.rc0"
|
||||
|
||||
if defined? Mongo::DEFAULT_MAX_BSON_SIZE
|
||||
DEFAULT_MAX_BSON_SIZE = Mongo::DEFAULT_MAX_BSON_SIZE
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||
|
||||
module Mongo
|
||||
VERSION = "1.2.4"
|
||||
VERSION = "1.3.0.rc0"
|
||||
end
|
||||
|
||||
module Mongo
|
||||
|
|
Loading…
Reference in New Issue