Skip to content

Commit 3a7c1aa

Browse files
committed
Merge pull request #81
2 parents 22ff2fe + e1c9d13 commit 3a7c1aa

File tree

8 files changed

+480
-10
lines changed

8 files changed

+480
-10
lines changed

RELEASE-1.0.0alpha1

Lines changed: 470 additions & 0 deletions
Large diffs are not rendered by default.

bin/package.xml.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ necessary to build a fully-functional MongoDB driver.
1717
<lead>
1818
<name>Jeremy Mikola</name>
1919
<user>jmikola</user>
20-
<email>jmikola@mongodb.com</email>
20+
<email>jmikola@php.net</email>
2121
<active>yes</active>
2222
</lead>
2323
<lead>
2424
<name>Derick Rethans</name>
2525
<user>derick</user>
26-
<email>derick@mongodb.com</email>
26+
<email>derick@php.net</email>
2727
<active>yes</active>
2828
</lead>
2929
<date>%RELEASE_DATE%</date>
@@ -46,7 +46,7 @@ necessary to build a fully-functional MongoDB driver.
4646
<dependencies>
4747
<required>
4848
<php>
49-
<min>5.3.0</min>
49+
<min>5.4.0</min>
5050
<max>5.99.99</max>
5151
</php>
5252
<pearinstaller>

php_phongo.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
extern zend_module_entry mongodb_module_entry;
3131

3232
/* FIXME: Its annoying to bump version. Move into phongo_version.h.in */
33-
#define MONGODB_VERSION_S "0.6.4"
34-
#define MONGODB_STABILITY_S "devel"
33+
#define MONGODB_VERSION_S "1.0.0alpha1"
34+
#define MONGODB_STABILITY_S "alpha"
3535
#define MONGODB_VERSION MONGODB_VERSION_S
3636

3737
#ifdef PHP_WIN32

tests/functional/phpinfo-1.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ phpinfo();
1616
mongodb
1717

1818
mongodb support => enabled
19-
mongodb version => 0.%d.%d
19+
mongodb version => 1.%d.%d%S
2020
mongodb stability => %s
2121
libmongoc version => 1.%s
2222
libbson version => 1.%s

tests/functional/phpinfo-2.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ phpinfo();
1919
mongodb
2020

2121
mongodb support => enabled
22-
mongodb version => 0.%d.%d
22+
mongodb version => 1.%d.%d%S
2323
mongodb stability => %s
2424
libmongoc version => 1.%s
2525
libbson version => 1.%s

tests/manager/manager-debug-001.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ foreach($content as $line) {
2929
===DONE===
3030
<?php exit(0); ?>
3131
--EXPECTF--
32-
[%s] PHONGO: DEBUG > Creating Manager, phongo-0.%d.%d[%s] - mongoc-1.%s, libbson-1.%s
32+
[%s] PHONGO: DEBUG > Creating Manager, phongo-1.%d.%d%S[%s] - mongoc-1.%s, libbson-1.%s
3333
[%s] mongoc: TRACE > ENTRY: mongoc_bulk_operation_execute():%d
3434
[%s] mongoc: TRACE > EXIT: mongoc_bulk_operation_execute():%d
3535
===DONE===

tests/manager/manager-debug-002.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ini_set("mongodb.debug", "off");
1919
<?php exit(0); ?>
2020
--EXPECTF--
2121
%a
22-
[%s] PHONGO: DEBUG > Creating Manager, phongo-0.%d.%d[%s] - mongoc-1.%s, libbson-1.%s
22+
[%s] PHONGO: DEBUG > Creating Manager, phongo-1.%d.%d%S[%s] - mongoc-1.%s, libbson-1.%s
2323
%a
2424
[%s] PHONGO: DEBUG > Connecting to '%s:%d[mongodb://%s:%d]'
2525
%a

tests/manager/manager-debug-003.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ ini_set("mongodb.debug", "off");
2020
--EXPECTF--
2121
%a
2222
[%s] PHONGO: TRACE > ENTRY: php_phongo_make_mongo_client():%d
23-
[%s] PHONGO: DEBUG > Creating Manager, phongo-0.%d.%d[%s] - mongoc-1.%s, libbson-1.%s
23+
[%s] PHONGO: DEBUG > Creating Manager, phongo-1.%d.%d%S[%s] - mongoc-1.%s, libbson-1.%s
2424
%a
2525
===DONE===

0 commit comments

Comments
 (0)