From 6055e3d8722c85e5b6a158e45ff831cf8046887a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 8 Feb 2018 08:17:26 +0100 Subject: Release 0.1.2 --- package.xml | 5 +++-- php_rpminfo.h | 2 +- tests/006-rpminfo-errors.phpt | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/package.xml b/package.xml index 57ef292..2ab372a 100644 --- a/package.xml +++ b/package.xml @@ -10,9 +10,9 @@ remi@php.net yes - 2018-01-26 + 2018-02-08 - 0.1.2dev + 0.1.2 0.1.0 @@ -21,6 +21,7 @@ PHP 3.01 +- first pecl release - rpminfo(): add option to retrieve error message instead of raising a warning diff --git a/php_rpminfo.h b/php_rpminfo.h index fa66612..0510690 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.1.2-dev" +#define PHP_RPMINFO_VERSION "0.1.2" #ifdef PHP_WIN32 # define PHP_RPMINFO_API __declspec(dllexport) diff --git a/tests/006-rpminfo-errors.phpt b/tests/006-rpminfo-errors.phpt index 78ab21d..edacbdb 100644 --- a/tests/006-rpminfo-errors.phpt +++ b/tests/006-rpminfo-errors.phpt @@ -28,9 +28,9 @@ bool(false) + PHP Warnings bool(false) -string(75) "Can't open '%s/tests/missing.rpm': No such file or directory" +string(%d) "Can't open '%s/tests/missing.rpm': No such file or directory" bool(false) -string(87) "Can't read '%s/tests/006-rpminfo-errors.php': Argument is not a RPM file" +string(%d) "Can't read '%s/tests/006-rpminfo-errors.php': Argument is not a RPM file" bool(true) NULL Done -- cgit