From 42a88767d14ca649f73bfc405fb567e3cd0b750c Mon Sep 17 00:00:00 2001 From: Joel Wurtz Date: Tue, 26 Jan 2016 23:49:57 +0100 Subject: [PATCH 1/2] Remove useless interface, minor fix in readme --- CHANGELOG.md | 6 ++++++ README.md | 5 ++--- composer.json | 5 ++--- src/Exception/BatchException.php | 3 +-- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cbae39..f3363f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 1.0.0 - (Not released) + +### Changed + +- Remove useless interface in BatchException + ## 0.2.0 - 2016-01-12 diff --git a/README.md b/README.md index b0d1b13..6d2d203 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ This package provides common tools for HTTP Clients: ## Documentation -Please see the [official documentation](http://docs.httplug.io). +Please see the [official documentation](http://docs.php-http.org/en/latest/components/client-common.html). ## Testing @@ -46,8 +46,7 @@ Please see our [contributing guide](http://docs.php-http.org/en/latest/developme ## Security -If you discover any security related issues, please contact us at [security@httplug.io](mailto:security@httplug.io) -or [security@php-http.org](mailto:security@php-http.org). +If you discover any security related issues, please contact us at [security@php-http.org](mailto:security@php-http.org). ## License diff --git a/composer.json b/composer.json index 5bcb788..6a4eeb7 100644 --- a/composer.json +++ b/composer.json @@ -30,9 +30,8 @@ }, "extra": { "branch-alias": { - "dev-master": "0.3-dev" + "dev-master": "1.1-dev" } }, - "prefer-stable": true, - "minimum-stability": "RC" + "prefer-stable": true } diff --git a/src/Exception/BatchException.php b/src/Exception/BatchException.php index 8b27cad..66a9271 100644 --- a/src/Exception/BatchException.php +++ b/src/Exception/BatchException.php @@ -2,7 +2,6 @@ namespace Http\Client\Common\Exception; -use Http\Client\Exception; use Http\Client\Exception\TransferException; use Http\Client\Common\BatchResult; @@ -13,7 +12,7 @@ * * @author Márk Sági-Kazár */ -final class BatchException extends TransferException implements Exception +final class BatchException extends TransferException { /** * @var BatchResult From 25ea496243b9623c2070878ae0364bc9e0cae043 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rk=20S=C3=A1gi-Kaz=C3=A1r?= Date: Wed, 27 Jan 2016 10:45:36 +0100 Subject: [PATCH 2/2] Update release date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3363f5..7673954 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## 1.0.0 - (Not released) +## 1.0.0 - 2016-01-27 ### Changed