Skip to content

Commit a22406c

Browse files
committed
Prepare v1.1.0 release
1 parent 40c0559 commit a22406c

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

CHANGELOG.md

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

3+
## 1.1.0 (2017-09-18)
4+
5+
* Feature: Update SocketClient dependency to latest version
6+
(#58 by @clue)
7+
8+
* Improve test suite by adding PHPUnit to require-dev,
9+
fix HHVM build for now again and ignore future HHVM build errors,
10+
lock Travis distro so new defaults will not break the build and
11+
skip functional integration tests by default
12+
(#52, #53, #56 and #57 by @clue)
13+
314
## 1.0.0 (2016-05-20)
415

516
* First stable release, now following SemVer

README.md

+5-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# clue/redis-react [![Build Status](https://travis-ci.org/clue/php-redis-react.svg?branch=master)](https://travis-ci.org/clue/php-redis-react)
22

3-
Async [Redis](http://redis.io/) client implementation, built on top of [React PHP](http://reactphp.org/).
3+
Async [Redis](http://redis.io/) client implementation, built on top of [ReactPHP](http://reactphp.org/).
44

55
[Redis](http://redis.io/) is an open source, advanced, in-memory key-value database.
66
It offers a set of simple, atomic operations in order to work with its primitive data types.
@@ -232,27 +232,21 @@ The `end()` method can be used to soft-close the Redis connection once all pendi
232232

233233
## Install
234234

235-
The recommended way to install this library is [through Composer](http://getcomposer.org).
236-
[New to Composer?](http://getcomposer.org/doc/00-intro.md)
235+
The recommended way to install this library is [through Composer](https://getcomposer.org).
236+
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
237237

238238
This will install the latest supported version:
239239

240240
```bash
241-
$ composer require clue/redis-react:^1.0
242-
```
243-
244-
If you care a lot about backwards compatibility, you may also use this:
245-
246-
```bash
247-
$ composer require "clue/redis-react:^1.0 || ^0.5"
241+
$ composer require clue/redis-react:^1.1
248242
```
249243

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

252246
## Tests
253247

254248
To run the test suite, you first need to clone this repo and then install all
255-
dependencies [through Composer](http://getcomposer.org):
249+
dependencies [through Composer](https://getcomposer.org):
256250

257251
```bash
258252
$ composer install

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "clue/redis-react",
3-
"description": "Async Redis client implementation, built on top of React PHP",
4-
"keywords": ["Redis", "client", "async", "reactphp"],
3+
"description": "Async Redis client implementation, built on top of ReactPHP",
4+
"keywords": ["Redis", "client", "async", "ReactPHP"],
55
"homepage": "https://github.com/clue/php-redis-react",
66
"license": "MIT",
77
"authors": [

0 commit comments

Comments
 (0)