BUMP 1.2.rc1
This commit is contained in:
parent
12a9e021be
commit
756ccfe877
|
@ -9,7 +9,7 @@ Gem::Specification.new do |s|
|
|||
s.summary = 'Ruby implementation of BSON'
|
||||
s.description = 'A Ruby BSON implementation for MongoDB. For more information about Mongo, see http://www.mongodb.org. For more information on BSON, see http://www.bsonspec.org.'
|
||||
|
||||
s.require_paths = ['lib', 'ext']
|
||||
s.require_paths = ['lib']
|
||||
|
||||
s.files = ['LICENSE.txt']
|
||||
s.files += ['lib/bson.rb'] + Dir['lib/bson/**/*.rb']
|
||||
|
|
|
@ -14,4 +14,4 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#define VERSION "1.2.rc0"
|
||||
#define VERSION "1.2.rc1"
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
|
||||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||
|
||||
MINIMUM_BSON_EXT_VERSION = "1.2.rc0"
|
||||
MINIMUM_BSON_EXT_VERSION = "1.2.rc1"
|
||||
|
||||
module BSON
|
||||
VERSION = "1.2.rc0"
|
||||
VERSION = "1.2.rc1"
|
||||
|
||||
if defined? Mongo::DEFAULT_MAX_BSON_SIZE
|
||||
DEFAULT_MAX_BSON_SIZE = Mongo::DEFAULT_MAX_BSON_SIZE
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||||
|
||||
module Mongo
|
||||
VERSION = "1.2.rc0"
|
||||
VERSION = "1.2.rc1"
|
||||
end
|
||||
|
||||
module Mongo
|
||||
|
|
Loading…
Reference in New Issue