Skip to content

Commit bc9c808

Browse files
committed
BUMP 1.2.2
1 parent 574eb0a commit bc9c808

File tree

3 files changed

+26
-9
lines changed

3 files changed

+26
-9
lines changed

package.xml

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,22 @@
1313
<email>[email protected]</email>
1414
<active>yes</active>
1515
</lead>
16-
<date>2011-07-07</date>
16+
<date>2011-07-21</date>
1717
<time>12:00:00</time>
1818
<version>
19-
<release>1.2.1</release>
20-
<api>1.2.1</api>
19+
<release>1.2.2</release>
20+
<api>1.2.2</api>
2121
</version>
2222
<stability>
2323
<release>stable</release>
2424
<api>stable</api>
2525
</stability>
2626
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License</license>
2727
<notes>
28-
More aggressive connection pool cleanup.
29-
Fix replicaSet => false regression (1.2.0 would use a replica set connection
30-
if replicaSet=>false was specified).
31-
OS X Lion compile
28+
Retry queries when safe to do so (minimizing exceptions on failover).
29+
Block for "timeout" milliseconds when a connection pool is empty.
30+
Fix a segfault affecting authentication to a single server.
31+
Fix a segfault affecting deserialization of data larger than 4MB.
3232
</notes>
3333
<contents>
3434
<dir baseinstalldir="/" name="/">
@@ -76,6 +76,23 @@
7676
<providesextension>mongo</providesextension>
7777
<extsrcrelease/>
7878
<changelog>
79+
<release>
80+
<stability>
81+
<release>stable</release>
82+
<api>stable</api>
83+
</stability>
84+
<version>
85+
<release>1.2.2</release>
86+
<api>1.2.2</api>
87+
</version>
88+
<date>2011-07-21</date>
89+
<notes>
90+
Retry queries when safe to do so (minimizing exceptions on failover).
91+
Block for "timeout" milliseconds when a connection pool is empty.
92+
Fix a segfault affecting authentication to a single server.
93+
Fix a segfault affecting deserialization of data larger than 4MB.
94+
</notes>
95+
</release>
7996
<release>
8097
<stability>
8198
<release>stable</release>

php_mongo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#ifndef PHP_MONGO_H
1919
#define PHP_MONGO_H 1
2020

21-
#define PHP_MONGO_VERSION "1.2.2-"
21+
#define PHP_MONGO_VERSION "1.2.2"
2222
#define PHP_MONGO_EXTNAME "mongo"
2323

2424
// resource names

tests/MongoTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class MongoTest extends PHPUnit_Framework_TestCase
99
{
1010
public function testVersion() {
11-
$this->assertEquals("1.2.2-", Mongo::VERSION);
11+
$this->assertEquals("1.2.2", Mongo::VERSION);
1212
}
1313

1414
/**

0 commit comments

Comments
 (0)