summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/oci8/package.xml43
-rw-r--r--ext/oci8/php_oci8.h2
-rw-r--r--ext/oci8/tests/driver_name.phpt6
3 files changed, 34 insertions, 17 deletions
diff --git a/ext/oci8/package.xml b/ext/oci8/package.xml
index 4dca8f31bf..7663ee05c9 100644
--- a/ext/oci8/package.xml
+++ b/ext/oci8/package.xml
@@ -53,12 +53,12 @@ Oracle's standard cross-version connectivity applies. For example, PHP OCI8 lin
<active>no</active>
</lead>
- <date>2020-11-26</date>
+ <date>2020-12-21</date>
<time>12:00:00</time>
<version>
- <release>3.0.0</release>
- <api>3.0.0</api>
+ <release>3.0.1</release>
+ <api>3.0.1</api>
</version>
<stability>
<release>stable</release>
@@ -68,15 +68,7 @@ Oracle's standard cross-version connectivity applies. For example, PHP OCI8 lin
<notes>
This version is for PHP 8 only.
- Deprecated old OCI8 function aliases. (Jens de Nies)
-
- Removed obsolete no-op function oci_internal_debug(). (Jens de Nies)
-
- The OCI-Lob class is now called OCILob for standards compliance.
-
- The OCI-Collection class is now called OCICollection for standards compliance.
-
- Generate arginfo from function stubs. (Jens de Nies)
+ Updated Windows build environment to build with newer Oracle Client libraries. (cmb)
</notes>
<contents>
<dir name="/">
@@ -451,7 +443,7 @@ Oracle's standard cross-version connectivity applies. For example, PHP OCI8 lin
<dependencies>
<required>
<php>
- <min>7.0.0</min>
+ <min>8.0.0</min>
</php>
<pearinstaller>
<min>1.4.0b1</min>
@@ -486,6 +478,31 @@ Internal change: Convert some parameter parsing to the Fast Parameter Parsing AP
<release>
<version>
+ <release>3.0.0</release>
+ <api>3.0.0</api>
+ </version>
+ <stability>
+ <release>stable</release>
+ <api>stable</api>
+ </stability>
+ <license uri="http://www.php.net/license">PHP</license>
+ <notes>
+ This version is for PHP 8 only.
+
+ Deprecated old OCI8 function aliases. (Jens de Nies)
+
+ Removed obsolete no-op function oci_internal_debug(). (Jens de Nies)
+
+ The OCI-Lob class is now called OCILob for standards compliance.
+
+ The OCI-Collection class is now called OCICollection for standards compliance.
+
+ Generate arginfo from function stubs. (Jens de Nies)
+ </notes>
+</release>
+
+<release>
+ <version>
<release>2.1.8</release>
<api>2.1.8</api>
</version>
diff --git a/ext/oci8/php_oci8.h b/ext/oci8/php_oci8.h
index e3e294ef4f..25c76a6d18 100644
--- a/ext/oci8/php_oci8.h
+++ b/ext/oci8/php_oci8.h
@@ -41,7 +41,7 @@
*/
#undef PHP_OCI8_VERSION
#endif
-#define PHP_OCI8_VERSION "3.0.0"
+#define PHP_OCI8_VERSION "3.0.1"
extern zend_module_entry oci8_module_entry;
#define phpext_oci8_ptr &oci8_module_entry
diff --git a/ext/oci8/tests/driver_name.phpt b/ext/oci8/tests/driver_name.phpt
index 006f7abfa4..3bb52779ca 100644
--- a/ext/oci8/tests/driver_name.phpt
+++ b/ext/oci8/tests/driver_name.phpt
@@ -57,11 +57,11 @@ function get_attr($conn)
?>
--EXPECT--
**Test 1.1 - Default values for the attribute **************
-The value of DRIVER_NAME is PHP OCI8 : 3.0.0
+The value of DRIVER_NAME is PHP OCI8 : 3.0.1
***Test 1.2 - Get the values from different connections **************
Testing with oci_pconnect()
-The value of DRIVER_NAME is PHP OCI8 : 3.0.0
+The value of DRIVER_NAME is PHP OCI8 : 3.0.1
Testing with oci_new_connect()
-The value of DRIVER_NAME is PHP OCI8 : 3.0.0
+The value of DRIVER_NAME is PHP OCI8 : 3.0.1
Done