diff --git a/ext/oci8/package.xml b/ext/oci8/package.xml
index 59812c0c980..6278b5748ea 100644
--- a/ext/oci8/package.xml
+++ b/ext/oci8/package.xml
@@ -52,12 +52,12 @@ Interoperability Support" (ID 207303.1) for details.
no
- 2017-08-15
+ 2018-12-11
- 2.10.0
- 2.10.0
+ 2.2.0
+ 2.2.0stable
@@ -69,7 +69,7 @@ This version is for PHP 7 only.
Added oci_set_call_timeout() for call timeouts. (Requires Oracle client libraries 18c or later)
Added oci_set_db_operation() for the Oracle Database 'DBOP' end-to-end-tracing attribute. (Requires Oracle 12.2 or later)
Fixed bug #76804 (oci_pconnect with OCI_CRED_EXT not working). (KoenigsKind)
-Fixed installation on 7.3.
+Fixed installation on PHP 7.3.
Internal change: Convert some parameter parsing to the Fast Parameter Parsing API.
diff --git a/ext/oci8/php_oci8.h b/ext/oci8/php_oci8.h
index 308f8871148..13b7ebca5c4 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.10.0"
+#define PHP_OCI8_VERSION "2.2.0"
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 5d05c9d0461..8cbbf9648a4 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.10.0
+The value of DRIVER_NAME is PHP OCI8 : 2.2.0
***Test 1.2 - Get the values from different connections **************
Testing with oci_pconnect()
-The value of DRIVER_NAME is PHP OCI8 : 2.10.0
+The value of DRIVER_NAME is PHP OCI8 : 2.2.0
Testing with oci_new_connect()
-The value of DRIVER_NAME is PHP OCI8 : 2.10.0
+The value of DRIVER_NAME is PHP OCI8 : 2.2.0
Done