Skip to content

Commit

Permalink
BUMP 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kchodorow committed Dec 8, 2010
1 parent e77b614 commit 6eab09c
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 12 deletions.
42 changes: 32 additions & 10 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,26 @@
<email>kristina@10gen.com</email>
<active>yes</active>
</lead>
<date>2010-11-05</date>
<date>2010-12-08</date>
<time>12:00:00</time>
<version>
<release>1.0.11</release>
<api>1.0.11</api>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License</license>
<notes>
Better replica set connection error handling
Added MongoCursor::batchSize()
Added mongo.allow_empty_keys option
Added unique codes for all MongoExceptions and MongoCursorExceptions
Added MongoId::getPID() and MongoId::getInc() methods
Added $id field to MongoId so that json_encode turns it into {$id:...}
Fixed cursor timeout bug
Replica set reads can be distributed to slaves. This can be done by calling
setSlaveOkay on a connection, database, or collection. You can see the slave
that will be used with Mongo::getSlave and see/refresh the set status with
Mongo::getHosts.You can now see the server used for a query with
MongoCursor::info.
Added mongo.no_id php.ini option.
Better exception is thrown when the database is corrupt.
Fixed MongoDB::createCollection parameter parsing on 64-bit machines.
</notes>
<contents>
<dir baseinstalldir="/" name="/">
Expand Down Expand Up @@ -67,6 +68,27 @@
<providesextension>mongo</providesextension>
<extsrcrelease/>
<changelog>
<release>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<version>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<date>2010-12-08</date>
<notes>
Replica set reads can be distributed to slaves. This can be done by calling
setSlaveOkay on a connection, database, or collection. You can see the slave
that will be used with Mongo::getSlave and see/refresh the set status with
Mongo::getHosts.You can now see the server used for a query with
MongoCursor::info.
Added mongo.no_id php.ini option.
Better exception is thrown when the database is corrupt.
Fixed MongoDB::createCollection parameter parsing on 64-bit machines.
</notes>
</release>
<release>
<stability>
<release>stable</release>
Expand Down
2 changes: 1 addition & 1 deletion php_mongo.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#ifndef PHP_MONGO_H
#define PHP_MONGO_H 1

#define PHP_MONGO_VERSION "1.0.11"
#define PHP_MONGO_VERSION "1.1.0"
#define PHP_MONGO_EXTNAME "mongo"

// resource names
Expand Down
2 changes: 1 addition & 1 deletion tests/MongoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class MongoTest extends PHPUnit_Framework_TestCase
{
public function testVersion() {
$this->assertEquals("1.0.11", Mongo::VERSION);
$this->assertEquals("1.1.0", Mongo::VERSION);
}

/**
Expand Down

0 comments on commit 6eab09c

Please sign in to comment.