BUMP 1.2.rc1

This commit is contained in:
Kyle Banker 2011-01-05 12:31:49 -05:00
parent 12a9e021be
commit 756ccfe877
4 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.summary = 'Ruby implementation of BSON' 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.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 = ['LICENSE.txt']
s.files += ['lib/bson.rb'] + Dir['lib/bson/**/*.rb'] s.files += ['lib/bson.rb'] + Dir['lib/bson/**/*.rb']

View File

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

View File

@ -2,10 +2,10 @@
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
MINIMUM_BSON_EXT_VERSION = "1.2.rc0" MINIMUM_BSON_EXT_VERSION = "1.2.rc1"
module BSON module BSON
VERSION = "1.2.rc0" VERSION = "1.2.rc1"
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

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