BUMP 1.2.1

This commit is contained in:
Kyle Banker 2011-02-10 15:27:06 -05:00
parent 0d90338a46
commit 04c536292a
4 changed files with 11 additions and 4 deletions

View File

@ -1,5 +1,12 @@
# MongoDB Ruby Driver History
### 1.2.1
2011-1-18
* Enable authentication with connection pooling.
* Allow custom logging with Connection#instrument (CodeMonkeySteve)
* Minor fixes and doc improvements.
### 1.2.0
2011-1-18

View File

@ -14,4 +14,4 @@
* limitations under the License.
*/
#define VERSION "1.2.0"
#define VERSION "1.2.1"

View File

@ -18,10 +18,10 @@
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
MINIMUM_BSON_EXT_VERSION = "1.2.0"
MINIMUM_BSON_EXT_VERSION = "1.2.1"
module BSON
VERSION = "1.2.0"
VERSION = "1.2.1"
if defined? 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'))
module Mongo
VERSION = "1.2.0"
VERSION = "1.2.1"
end
module Mongo