From d4be306d0aca28b5633b96adef03b29fea569c2f Mon Sep 17 00:00:00 2001 From: Daniele Alessandri Date: Fri, 1 Aug 2014 11:59:50 +0200 Subject: [PATCH] ... and here comes Predis v1.0.0! --- CHANGELOG.md | 2 +- VERSION | 2 +- package.ini | 2 +- src/Client.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8c7318f..dfa192e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -v1.0.0 (2014-08-xx) +v1.0.0 (2014-08-01) ================================================================================ - Switched to PSR-4 for autoloading. diff --git a/VERSION b/VERSION index 05639a55..3eefcb9d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.0-dev +1.0.0 diff --git a/package.ini b/package.ini index d1b20ca0..459ca0d5 100644 --- a/package.ini +++ b/package.ini @@ -11,7 +11,7 @@ desc = "Flexible and feature-complete PHP client library for Redis" homepage = "http://github.com/nrk/predis" license = "MIT" version = "1.0.0" -stability = "devel" +stability = "stable" channel = "pear.nrk.io" author = "Daniele Alessandri \"nrk\" " diff --git a/src/Client.php b/src/Client.php index 9df4fa6e..94f9c7c9 100644 --- a/src/Client.php +++ b/src/Client.php @@ -42,7 +42,7 @@ use Predis\Transaction\MultiExec as MultiExecTransaction; */ class Client implements ClientInterface { - const VERSION = '1.0.0-dev'; + const VERSION = '1.0.0'; protected $connection; protected $options;