From 5c46ad0677ddc2c4462191aa5a2ac7d129413997 Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
Date: Thu, 12 Oct 2023 15:58:05 +0200
Subject: Release 1.0.0

Promoted to 1.0.0 as everything planed is implemented
---
 package.xml   | 6 +++---
 php_rpminfo.h | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package.xml b/package.xml
index 18e098f..19f61dd 100644
--- a/package.xml
+++ b/package.xml
@@ -15,8 +15,8 @@ Documentation: https://www.php.net/rpminfo
   </lead>
   <date>2023-10-12</date>
   <version>
-    <release>0.8.0dev</release>
-    <api>0.0.0</api>
+    <release>1.0.0</release>
+    <api>1.0.0</api>
   </version>
   <stability>
     <release>stable</release>
@@ -24,7 +24,7 @@ Documentation: https://www.php.net/rpminfo
   </stability>
   <license uri="https://www.php.net/license/3_01.txt" filesource="LICENSE">PHP-3.01</license>
   <notes>
-- implement rpm stream wrapper
+- implement rpm stream wrapper with librpm >= 4.13
   </notes>
   <contents>
     <dir name="/">
diff --git a/php_rpminfo.h b/php_rpminfo.h
index 7df010e..bdb3656 100644
--- a/php_rpminfo.h
+++ b/php_rpminfo.h
@@ -22,7 +22,7 @@
 extern zend_module_entry rpminfo_module_entry;
 #define phpext_rpminfo_ptr &rpminfo_module_entry
 
-#define PHP_RPMINFO_VERSION "0.8.0-dev"
+#define PHP_RPMINFO_VERSION "1.0.0"
 
 #ifdef PHP_WIN32
 #	define PHP_RPMINFO_API __declspec(dllexport)
-- 
cgit