[pecl-networking-uuid] master: bump version to 1.3.0-dev for new API
Author: Remi Collet (remicollet)
Date: 2025-05-07T16:00:04+02:00
Commit: https://github.com/php/pecl-networking-uuid/commit/9b2564af3d9882fd7f26aa32b85388c5476051fd
Raw diff: https://github.com/php/pecl-networking-uuid/commit/9b2564af3d9882fd7f26aa32b85388c5476051fd.diff
bump version to 1.3.0-dev for new API
Changed paths:
M package.xml
M php_uuid.h
Diff:
diff --git a/package.xml b/package.xml
index faaded6..d9ea774 100644
--- a/package.xml
+++ b/package.xml
@@ -31,8 +31,8 @@ http://pear.php.net/dtd/package-2.0.xsd">
<date>2024-10-08</date>
<version>
- <release>1.2.1</release>
- <api>1.1.0</api>
+ <release>1.3.0dev</release>
+ <api>1.3.0</api>
</version>
<stability>
<release>stable</release>
@@ -42,8 +42,8 @@ http://pear.php.net/dtd/package-2.0.xsd">
<license uri="https://www.gnu.org/licenses/lgpl-2.1.html"
filesource="LICENSE">LGPL-2.1-or-later</license>
<notes>
-- MacOS support (Sean Molenaar)
-- fix for util-linux/libuuid 2.40 and uuid_time64
+- Add support for RFC9562 UUIDs (UUID_TYPE_TIME_V6 and UUID_TYPE_TIME_V7)
+ when available, in libuuid from util-linux version 2.41
</notes>
<contents>
@@ -96,6 +96,23 @@ http://pear.php.net/dtd/package-2.0.xsd">
</extsrcrelease>
<changelog>
+ <release>
+ <date>2024-10-08</date>
+ <version>
+ <release>1.2.1</release>
+ <api>1.1.0</api>
+ </version>
+ <stability>
+ <release>stable</release>
+ <api>stable</api>
+ </stability>
+ <license uri="https://www.gnu.org/licenses/lgpl-2.1.html"
filesource="LICENSE">LGPL-2.1-or-later</license>
+ <notes>
+- MacOS support (Sean Molenaar)
+- fix for util-linux/libuuid 2.40 and uuid_time64
+ </notes>
+ </release>
+
<release>
<date>2020-10-06</date>
<version>
diff --git a/php_uuid.h b/php_uuid.h
index 4df316d..3878785 100644
--- a/php_uuid.h
+++ b/php_uuid.h
@@ -37,7 +37,7 @@ extern "C" {
#include <php.h>
#ifdef HAVE_UUID
-#define PHP_UUID_VERSION "1.2.1"
+#define PHP_UUID_VERSION "1.3.0-dev"
#define PHP_UUID_RELEASED "2024-10-08"
#define PHP_UUID_STATE "stable"
#define PHP_UUID_AUTHORS "Hartmut Holzgraefe, Remi Collet"
Thread (1 message)
- Remi Collet