]> granicus.if.org Git - php/commitdiff
Bump OCI8 version for recent patch
authorChristopher Jones <sixd@php.net>
Fri, 14 Jul 2017 04:13:08 +0000 (14:13 +1000)
committerChristopher Jones <sixd@php.net>
Fri, 14 Jul 2017 04:13:08 +0000 (14:13 +1000)
ext/oci8/package.xml
ext/oci8/php_oci8.h
ext/oci8/tests/driver_name.phpt

index 15109c2bf3851a4ba73de6f8bdcfb1052e29bf71..450777bcf7462ab3aedd2e10ef4aaf275b0e3864 100644 (file)
@@ -50,8 +50,8 @@ Interoperability Support" (ID 207303.1) for details.
  <time>12:00:00</time>
 
   <version>
-   <release>2.1.5</release>
-   <api>2.1.5</api>
+   <release>2.1.6</release>
+   <api>2.1.6</api>
   </version>
   <stability>
    <release>stable</release>
@@ -60,7 +60,6 @@ Interoperability Support" (ID 207303.1) for details.
   <license uri="http://www.php.net/license">PHP</license>
   <notes>
 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)
   </notes>
  <contents>
@@ -471,6 +470,22 @@ Fixed bug #74625 (Integer overflow in oci_bind_array_by_name). (Ingmar Runge)
  </extsrcrelease>
  <changelog>
 
+<release>   
+ <version>
+   <release>2.1.5</release>
+   <api>2.1.5</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 7 only.
+Added TAF callback support (PR #2459, KoenigsKind) 
+  </notes>
+</release>   
+
 <release>
   <version>
    <release>2.1.4</release>
index 8070cb5b8c86069a24b82fa1d64a2797811df85c..04434f1f68e1c2d113371eb8ec3b720800c853ac 100644 (file)
@@ -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
index a707e88de8d9379f799974aa92122e296019f133..49616a00ad64b3f5baedfcccc8806f031d653e27 100644 (file)
@@ -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