Skip to content

Commit

Permalink
Prepare v0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Sep 4, 2017
1 parent c9a3be3 commit 4b6e58d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## 0.4.0 (2017-09-04)

* Feature / BC break: Simplify `Collection` by extending `Response` and merging `Collector` into `ActionSender`
(#41 by @clue)

```
// old
$collector = new Collector($client);
$collector->coreShowChannels()->then(function (Collection $collection) {
var_dump($collection->getResponse()->getFieldValue('Message'));
});
// new
$collector = new ActionSender($client);
$collector->coreShowChannels()->then(function (Collection $collection) {
var_dump($collection->getFieldValue('Message'));
});
```
* Feature / BC break: Replace deprecated SocketClient with new Socket component and
improve forward compatibility with upcoming ReactPHP components
(#39 by @clue)
* Feature / BC break: Consistently require URL when creating client
(#40 by @clue)
## 0.3.2 (2017-09-04)
* Feature / Fix: Update SocketClient to v0.5 and fix secure connection via TLS
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ The recommended way to install this library is [through Composer](https://getcom
This will install the latest supported version:

```bash
$ composer require clue/ami-react:^0.3.2
$ composer require clue/ami-react:^0.4
```

See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
Expand Down

0 comments on commit 4b6e58d

Please sign in to comment.