Skip to content

Commit

Permalink
update the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
xabbuh committed May 23, 2017
1 parent e878959 commit 3c4c201
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
CHANGELOG
=========

1.3.0
-----

* the Panda client relies on the HTTPlug library to perform API requests,
you need to install a [client implementation](https://packagist.org/providers/php-http/client-implementation).

For example:

```bash
$ composer require xabbuh/panda-client php-http/guzzle6-adapter
```

* the `HttpClient` class is deprecated and will be removed in 2.0, use
`HttplugClient` instead

* allow Symfony 4.x components

* dropped support for PHP 5.3, 5.4, and 5.5

1.2.3
-----

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ The recommended way to install the Panda client is using
```

Note: The Panda client relies on [HTTPlug](http://httplug.io/) to perform HTTP requests.
So you will need to install a client implementation to use the PandaClient. The command above
uses the Guzzle 6 adapter, but you can use any implementation.
So you will need to install a [client implementation](https://packagist.org/providers/php-http/client-implementation)
to use the PandaClient. The command above uses the Guzzle 6 adapter, but you can use
any implementation.

Usage
-----
Expand Down
14 changes: 14 additions & 0 deletions UPGRADE-1.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Upgrade from 1.2 to 1.3
=======================

* the Panda client relies on the HTTPlug library to perform API requests,
you need to install a [client implementation](https://packagist.org/providers/php-http/client-implementation).

For example:

```bash
$ composer require xabbuh/panda-client php-http/guzzle6-adapter
```

* the `HttpClient` class is deprecated and will be removed in 2.0, use
`HttplugClient` instead

0 comments on commit 3c4c201

Please sign in to comment.