Skip to content

Commit

Permalink
Prepare v2.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Jan 24, 2018
1 parent c59b033 commit e2332a0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 2.2.0 (2018-01-24)

* Feature: Support communication over Unix domain sockets (UDS)
(#70 by @clue)

```php
// new: now supports redis over Unix domain sockets (UDS)
$factory->createClient('redis+unix:///tmp/redis.sock');
```

## 2.1.0 (2017-09-25)

* Feature: Update Socket dependency to support hosts file on all platforms
Expand Down Expand Up @@ -29,7 +39,7 @@ affected by any BC breaks, see below for more details.

> All of this affects the `Factory` only, which is mostly considered
"advanced usage". If you're affected by this BC break, then it's
recomme ded to first update to the intermediary v1.2.0 release, which
recommended to first update to the intermediary v1.2.0 release, which
allows you to use the `redis://` URI scheme and a standard
`ConnectorInterface` and then update to this version without causing a
BC break.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This library provides you a simple API to work with your Redis database from wit
It enables you to set and query its data or use its PubSub topics to react to incoming events.

* **Async execution of Commands** -
Send any number commands to Redis in parallel (automatic pipeline) and
Send any number of commands to Redis in parallel (automatic pipeline) and
process their responses as soon as results come in.
The Promise-based design provides a *sane* interface to working with async responses.
* **Event-driven core** -
Expand Down Expand Up @@ -268,7 +268,7 @@ The recommended way to install this library is [through Composer](https://getcom
This will install the latest supported version:

```bash
$ composer require clue/redis-react:^2.1
$ composer require clue/redis-react:^2.2
```

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

0 comments on commit e2332a0

Please sign in to comment.