[PECL-CVS] [pecl-web_services-oauth] master: Released 2.0.12

[email protected] (Rasmus Lerdorf) Tue, 7 Apr 2026 12:57:21 +0000
Newsgroups php.pecl.cvs
Message-ID <[email protected]>
Author: Rasmus Lerdorf (rlerdorf)
Date: 2026-04-07T08:56:34-04:00

Commit: https://github.com/php/pecl-web_services-oauth/commit/8da93b5fda577d036f0bc3651194ef68446f5685
Raw diff: https://github.com/php/pecl-web_services-oauth/commit/8da93b5fda577d036f0bc3651194ef68446f5685.diff

Released 2.0.12

Co-Authored-By: Claude Sonnet 4.6 (1M context) <[email protected]>

Changed paths:
  M  CHANGELOG.md
  M  package.xml
  M  php_oauth.h


Diff:

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 74b5e73..cea53e2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,6 @@
 # Changelog
 
-## 2.0.11 - 2026-04-06
+## 2.0.12 - 2026-04-07
 
 * Fix segfault when OAuthProvider callback handler throws an exception (issue #27)
 * Replace deprecated cURL `curl_formadd()` API with MIME API for multipart form uploads (issue #37)
@@ -11,6 +11,7 @@
 * Fix memory leak in OAuthProvider callback registration on invalid callback type
 * Add multipart array cleanup in destructor for exception safety
 * Add GitHub Actions CI for PHP 8.1-8.5
+* Add PIE support (composer.json, package name pecl/oauth)
 
 ## 2.0.10 - 2025-10-09
 
diff --git a/package.xml b/package.xml
index 1077d50..adb608e 100644
--- a/package.xml
+++ b/package.xml
@@ -47,9 +47,9 @@ Requirements: ext/hash (now a part of PHP core)
     <email>[email protected]</email>
     <active>yes</active>
   </lead>
-  <date>2026-04-06</date>
+  <date>2026-04-07</date>
   <version>
-    <release>2.0.11</release>
+    <release>2.0.12</release>
     <api>2.0</api>
   </version>
   <stability>
@@ -67,7 +67,7 @@ Requirements: ext/hash (now a part of PHP core)
     * Fix memory leak in provider auth header parsing
     * Fix memory leak in provider callback registration
     * Add GitHub Actions CI
-    * Add PIE support (composer.json)
+    * Add PIE support (composer.json, package name pecl/oauth)
 ]]>
   </notes>
   <contents>
diff --git a/php_oauth.h b/php_oauth.h
index a73f34d..4442388 100644
--- a/php_oauth.h
+++ b/php_oauth.h
@@ -73,7 +73,7 @@
 	curl_formfree(f);
 #endif
 
-#define PHP_OAUTH_VERSION 2.0.11
+#define PHP_OAUTH_VERSION 2.0.12
 
 #define __stringify_1(x)    #x
 #define __stringify(x)      __stringify_1(x)