Skip to content

Commit ab3da1e

Browse files
author
Kristina Chodorow
committed
BUMP 1.0.8
1 parent 260f173 commit ab3da1e

File tree

3 files changed

+31
-12
lines changed

3 files changed

+31
-12
lines changed

package.xml

Lines changed: 29 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@
1313
<email>[email protected]</email>
1414
<active>yes</active>
1515
</lead>
16-
<date>2010-04-28</date>
16+
<date>2010-06-28</date>
1717
<time>12:00:00</time>
1818
<version>
19-
<release>1.0.7</release>
20-
<api>1.0.7</api>
19+
<release>1.0.8</release>
20+
<api>1.0.8</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-
The bug fix release! A zillion bugfixes and the new static
29-
MongoCursor::$timeout property for setting a default timeout for requests.
30-
Bug fixes include count error handling, fixing double frees with BSON errors
31-
and ensureIndex, a mutex fix for FreeBSD, catching socket connection errors
32-
(William Volkman), database commands propagate exceptions, and cursor killing
33-
is more efficient.
28+
Added w and wtimeout. GridFS: added get, put, and delete methods, index
29+
checks on all methods, added fields param to GridFS::findOne. Fixed some
30+
error messages (authentication and BSON deserialization) and handling (for
31+
large messages and field names passed as integers). Fixed a couple of double
32+
frees and an incorrect cursor boundry condition. Added MongoId::__set_state
33+
and MongoId::getHostname (to see the hostname hashed for unique ids).
3434
</notes>
3535
<contents>
3636
<dir baseinstalldir="/" name="/">
@@ -65,7 +65,26 @@
6565
</dependencies>
6666
<providesextension>mongo</providesextension>
6767
<extsrcrelease/>
68-
<changelog>
68+
<changelog>
69+
<release>
70+
<stability>
71+
<release>stable</release>
72+
<api>stable</api>
73+
</stability>
74+
<version>
75+
<release>1.0.8</release>
76+
<api>1.0.8</api>
77+
</version>
78+
<date>2010-06-28</date>
79+
<notes>
80+
Added w and wtimeout. GridFS: added get, put, and delete methods, index
81+
checks on all methods, added fields param to GridFS::findOne. Fixed some
82+
error messages (authentication and BSON deserialization) and handling (for
83+
large messages and field names passed as integers). Fixed a couple of double
84+
frees and an incorrect cursor boundry condition. Added MongoId::__set_state
85+
and MongoId::getHostname (to see the hostname hashed for unique ids).
86+
</notes>
87+
</release>
6988
<release>
7089
<stability>
7190
<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.7+"
21+
#define PHP_MONGO_VERSION "1.0.8"
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.7+", Mongo::VERSION);
11+
$this->assertEquals("1.0.8", Mongo::VERSION);
1212
}
1313

1414
/**

0 commit comments

Comments
 (0)