Skip to content

Commit e2332a0

Browse files
committed
Prepare v2.2.0 release
1 parent c59b033 commit e2332a0

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 2.2.0 (2018-01-24)
4+
5+
* Feature: Support communication over Unix domain sockets (UDS)
6+
(#70 by @clue)
7+
8+
```php
9+
// new: now supports redis over Unix domain sockets (UDS)
10+
$factory->createClient('redis+unix:///tmp/redis.sock');
11+
```
12+
313
## 2.1.0 (2017-09-25)
414

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

3040
> All of this affects the `Factory` only, which is mostly considered
3141
"advanced usage". If you're affected by this BC break, then it's
32-
recomme ded to first update to the intermediary v1.2.0 release, which
42+
recommended to first update to the intermediary v1.2.0 release, which
3343
allows you to use the `redis://` URI scheme and a standard
3444
`ConnectorInterface` and then update to this version without causing a
3545
BC break.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This library provides you a simple API to work with your Redis database from wit
99
It enables you to set and query its data or use its PubSub topics to react to incoming events.
1010

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

270270
```bash
271-
$ composer require clue/redis-react:^2.1
271+
$ composer require clue/redis-react:^2.2
272272
```
273273

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

0 commit comments

Comments
 (0)