Skip to content

Commit 7ac74f1

Browse files
committed
BUMP 1.0.10
1 parent ae93236 commit 7ac74f1

File tree

3 files changed

+28
-11
lines changed

3 files changed

+28
-11
lines changed

package.xml

Lines changed: 26 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,23 @@
1313
<email>[email protected]</email>
1414
<active>yes</active>
1515
</lead>
16-
<date>2010-08-06</date>
16+
<date>2010-09-29</date>
1717
<time>12:00:00</time>
1818
<version>
19-
<release>1.0.9</release>
20-
<api>1.0.9</api>
19+
<release>1.0.10</release>
20+
<api>1.0.10</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-
Added 64-bit integer handling: see docs MongoInt32, MongoInt64, and ini
29-
options (Derick Rethans)
30-
Replica set support
31-
Added support for domain sockets
32-
w and fsync options are customizable per operation
33-
Added MongoCollection::ASCENDING and DESCENDING constants
28+
Make reconnection more aggressive
29+
Fix cursor killing bug
30+
Exception codes match database error codes
31+
Fixed bindata types on 64-bit systems
32+
Added query state and cursor id fields to MongoCursor::info
3433
</notes>
3534
<contents>
3635
<dir baseinstalldir="/" name="/">
@@ -66,6 +65,24 @@
6665
<providesextension>mongo</providesextension>
6766
<extsrcrelease/>
6867
<changelog>
68+
<release>
69+
<stability>
70+
<release>stable</release>
71+
<api>stable</api>
72+
</stability>
73+
<version>
74+
<release>1.0.10</release>
75+
<api>1.0.10</api>
76+
</version>
77+
<date>2010-09-29</date>
78+
<notes>
79+
Make reconnection more aggressive
80+
Fix cursor killing bug
81+
Exception codes match database error codes
82+
Fixed bindata types on 64-bit systems
83+
Added query state and cursor id fields to MongoCursor::info
84+
</notes>
85+
</release>
6986
<release>
7087
<stability>
7188
<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.0.9"
21+
#define PHP_MONGO_VERSION "1.0.10"
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.0.9", Mongo::VERSION);
11+
$this->assertEquals("1.0.10", Mongo::VERSION);
1212
}
1313

1414
/**

0 commit comments

Comments
 (0)