From fdd776cbd9974d43e2eb6039960a5e3e1bb8d1b9 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 19 Sep 2016 18:28:12 +0200 Subject: php-PsrLog: 1.0.1 --- composer.json | 26 ++++++++++++++++++++++++++ php-PsrLog.spec | 9 ++++++--- 2 files changed, 32 insertions(+), 3 deletions(-) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..87934d7 --- /dev/null +++ b/composer.json @@ -0,0 +1,26 @@ +{ + "name": "psr/log", + "description": "Common interface for logging libraries", + "keywords": ["psr", "psr-3", "log"], + "homepage": "https://github.com/php-fig/log", + "license": "MIT", + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "require": { + "php": ">=5.3.0" + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + } +} diff --git a/php-PsrLog.spec b/php-PsrLog.spec index b2491d0..261fe31 100644 --- a/php-PsrLog.spec +++ b/php-PsrLog.spec @@ -12,8 +12,8 @@ %global github_owner php-fig %global github_name log -%global github_version 1.0.0 -%global github_commit fe0936ee26643249e916849d48e3a51d5f5e278b +%global github_version 1.0.1 +%global github_commit 5277094ed527a1c4477177d102fe4c53551953e0 %global composer_vendor psr %global composer_project log @@ -22,7 +22,7 @@ Name: php-PsrLog Version: %{github_version} -Release: 9%{?dist} +Release: 1%{?dist} Summary: Common interface for logging libraries Group: Development/Libraries @@ -100,6 +100,9 @@ cp -rp Psr %{buildroot}%{_datadir}/php/ %changelog +* Mon Sep 19 2016 Remi Collet 1.0.1-1 +- update to 1.0.1 + * Wed Jan 20 2016 Shawn Iwinski - 1.0.0-9 - Added php-{COMPOSER_VENDOR}-{COMPOSER_PROJECT} ("php-psr-log") virtual provide - %%license usage -- cgit