diff options
author | Remi Collet <remi@remirepo.net> | 2023-10-12 15:58:05 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2023-10-12 15:58:05 +0200 |
commit | 5c46ad0677ddc2c4462191aa5a2ac7d129413997 (patch) | |
tree | 6e8a4bc0f982c3357faeea57121a51fd86e9f1a2 | |
parent | 4e8551c4874d7bb1d6676dfb309cc77da59843ef (diff) |
Release 1.0.0
Promoted to 1.0.0 as everything planed is implemented
-rw-r--r-- | package.xml | 6 | ||||
-rw-r--r-- | 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) |