BUMP 1.5.0.rc0

This commit is contained in:
Kyle Banker 2011-11-18 17:15:03 -05:00
parent e81b616da5
commit 11a722b96a
4 changed files with 9 additions and 4 deletions

View File

@ -1,5 +1,10 @@
# MongoDB Ruby Driver History
### 1.5.0.rc0
2011-11-18
Fix bugs associated with replica set refresh.
### 1.4.1
2011-10-17

View File

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

View File

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

View File

@ -1,3 +1,3 @@
module Mongo
VERSION = "1.4.1"
VERSION = "1.5.0.rc0"
end