diff --git a/ext/oci8/package.xml b/ext/oci8/package.xml
index 15109c2bf38..450777bcf74 100644
--- a/ext/oci8/package.xml
+++ b/ext/oci8/package.xml
@@ -50,8 +50,8 @@ Interoperability Support" (ID 207303.1) for details.
- 2.1.5
- 2.1.5
+ 2.1.6
+ 2.1.6
stable
@@ -60,7 +60,6 @@ Interoperability Support" (ID 207303.1) for details.
PHP
This version is for PHP 7 only.
-Added TAF callback support (PR #2459, KoenigsKind)
Fixed bug #74625 (Integer overflow in oci_bind_array_by_name). (Ingmar Runge)
@@ -471,6 +470,22 @@ Fixed bug #74625 (Integer overflow in oci_bind_array_by_name). (Ingmar Runge)
+
+
+ 2.1.5
+ 2.1.5
+
+
+ stable
+ stable
+
+ PHP
+
+This version is for PHP 7 only.
+Added TAF callback support (PR #2459, KoenigsKind)
+
+
+
2.1.4
diff --git a/ext/oci8/php_oci8.h b/ext/oci8/php_oci8.h
index a036a024cbd..e5acd58787a 100644
--- a/ext/oci8/php_oci8.h
+++ b/ext/oci8/php_oci8.h
@@ -43,7 +43,7 @@
*/
#undef PHP_OCI8_VERSION
#endif
-#define PHP_OCI8_VERSION "2.1.5"
+#define PHP_OCI8_VERSION "2.1.6"
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 a707e88de8d..49616a00ad6 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 : 2.1.5
+The value of DRIVER_NAME is PHP OCI8 : 2.1.6
***Test 1.2 - Get the values from different connections **************
Testing with oci_pconnect()
-The value of DRIVER_NAME is PHP OCI8 : 2.1.5
+The value of DRIVER_NAME is PHP OCI8 : 2.1.6
Testing with oci_new_connect()
-The value of DRIVER_NAME is PHP OCI8 : 2.1.5
+The value of DRIVER_NAME is PHP OCI8 : 2.1.6
Done