diff options
| author | Remi Collet <remi@remirepo.net> | 2024-09-02 08:24:38 +0200 | 
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2024-09-02 08:24:38 +0200 | 
| commit | b2cac3d05da85cd6e4ed8c6b4f0e8ac7e2cf850d (patch) | |
| tree | 2d48785791a0d1a64d7115666b566048a517c51a | |
| parent | 97bfb675b3eb76f7f21dbad34cf454f8a4a4dceb (diff) | |
Release 1.0.0RC2v1.0.0RC2
| -rw-r--r-- | package.xml | 21 | ||||
| -rw-r--r-- | php_xpass.h | 2 | 
2 files changed, 19 insertions, 4 deletions
diff --git a/package.xml b/package.xml index a4f9d1e..e5a2ad3 100644 --- a/package.xml +++ b/package.xml @@ -16,9 +16,9 @@ distributions, using extended crypt library (libxcrypt):      <email>remi@php.net</email>      <active>yes</active>    </lead> -  <date>2024-08-28</date> +  <date>2024-09-02</date>    <version> -    <release>1.0.0RC1</release> +    <release>1.0.0RC2</release>      <api>1.0.0</api>    </version>    <stability> @@ -27,7 +27,7 @@ distributions, using extended crypt library (libxcrypt):    </stability>    <license uri="https://www.php.net/license/3_01.txt" filesource="LICENSE">PHP-3.01</license>    <notes> -- first release +- fix libxcrypt algorithm detection (@zeriyoshi)    </notes>    <contents>      <dir name="/"> @@ -59,5 +59,20 @@ distributions, using extended crypt library (libxcrypt):    <providesextension>xpass</providesextension>    <extsrcrelease/>    <changelog> +    <release> +      <date>2024-08-28</date> +      <version> +        <release>1.0.0RC1</release> +        <api>1.0.0</api> +      </version> +      <stability> +        <release>beta</release> +        <api>stable</api> +      </stability> +      <license uri="https://www.php.net/license/3_01.txt" filesource="LICENSE">PHP-3.01</license> +      <notes> +- first RC release +      </notes> +    </release>    </changelog>  </package> diff --git a/php_xpass.h b/php_xpass.h index 5d889c4..a669879 100644 --- a/php_xpass.h +++ b/php_xpass.h @@ -22,7 +22,7 @@  extern zend_module_entry xpass_module_entry;  #define phpext_xpass_ptr &xpass_module_entry -#define PHP_XPASS_VERSION "1.0.0RC1" +#define PHP_XPASS_VERSION "1.0.0RC2"  #define PHP_XPASS_AUTHOR  "Remi Collet"  #define PHP_XPASS_LICENSE "PHP-3.01"  | 
