Skip to content

Commit a5e7e5a

Browse files
committed
Prepare for 1.2.0 release
1 parent 056c6d6 commit a5e7e5a

2 files changed

Lines changed: 26 additions & 9 deletions

File tree

package.xml

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Oracle's standard cross-version connectivity applies. For example, PHP PDO
3535
<name>Christopher Jones</name>
3636
<user>sixd</user>
3737
<email>sixd@php.net</email>
38-
<active>yes</active>
38+
<active>no</active>
3939
</lead>
4040

4141
<lead>
@@ -45,22 +45,21 @@ Oracle&apos;s standard cross-version connectivity applies. For example, PHP PDO
4545
<active>yes</active>
4646
</lead>
4747

48-
<date>2024-08-21</date>
48+
<date>2026-01-07</date>
4949
<time>12:00:00</time>
5050

5151
<version>
52-
<release>1.1.0</release>
53-
<api>1.1.0</api>
52+
<release>1.2.0</release>
53+
<api>1.2.0</api>
5454
</version>
5555
<stability>
5656
<release>stable</release>
5757
<api>stable</api>
5858
</stability>
5959
<license uri="http://www.php.net/license">PHP</license>
6060
<notes>
61-
This version is for PHP 8.3 and 8.4 only.
62-
63-
Requires Oracle Client libraries from 11.2 or later.
61+
This version is for PHP 8.3 and newer versions.
62+
Improved multiple binding and LOB handling, Added PIE migration support.
6463
</notes>
6564
<contents>
6665
<dir name="/">
@@ -90,4 +89,22 @@ Oracle&apos;s standard cross-version connectivity applies. For example, PHP PDO
9089
<extsrcrelease>
9190
<configureoption default="autodetect" name="with-pdo-oci" prompt="Please provide the path to the ORACLE_HOME directory. Use &apos;instantclient,/path/to/instant/client/lib&apos; if you&apos;re compiling with Oracle Instant Client" />
9291
</extsrcrelease>
92+
<changelog>
93+
<release>
94+
<version>
95+
<release>1.1.0</release>
96+
<api>1.1.0</api>
97+
</version>
98+
<stability>
99+
<release>stable</release>
100+
<api>stable</api>
101+
</stability>
102+
<license uri="http://www.php.net/license">PHP</license>
103+
<notes>
104+
This version is for PHP 8.3 and 8.4 only.
105+
106+
Requires Oracle Client libraries from 11.2 or later.
107+
</notes>
108+
</release>
109+
</changelog>
93110
</package>

php_pdo_oci.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ extern zend_module_entry pdo_oci_module_entry;
2121
#define phpext_pdo_oci_ptr &pdo_oci_module_entry
2222

2323
#include "php_version.h"
24-
#define PHP_PDO_OCI_VERSION "1.1.0"
24+
#define PHP_PDO_OCI_VERSION "1.2.0"
2525

2626
#ifdef ZTS
2727
#include "TSRM.h"
@@ -33,4 +33,4 @@ PHP_RINIT_FUNCTION(pdo_oci);
3333
PHP_RSHUTDOWN_FUNCTION(pdo_oci);
3434
PHP_MINFO_FUNCTION(pdo_oci);
3535

36-
#endif /* PHP_PDO_OCI_H */
36+
#endif /* PHP_PDO_OCI_H */

0 commit comments

Comments
 (0)