Skip to content

Commit

Permalink
Prepare v1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Sep 18, 2017
1 parent 40c0559 commit a22406c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 13 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 1.1.0 (2017-09-18)

* Feature: Update SocketClient dependency to latest version
(#58 by @clue)

* Improve test suite by adding PHPUnit to require-dev,
fix HHVM build for now again and ignore future HHVM build errors,
lock Travis distro so new defaults will not break the build and
skip functional integration tests by default
(#52, #53, #56 and #57 by @clue)

## 1.0.0 (2016-05-20)

* First stable release, now following SemVer
Expand Down
16 changes: 5 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# clue/redis-react [![Build Status](https://travis-ci.org/clue/php-redis-react.svg?branch=master)](https://travis-ci.org/clue/php-redis-react)

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

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

## Install

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

This will install the latest supported version:

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

If you care a lot about backwards compatibility, you may also use this:

```bash
$ composer require "clue/redis-react:^1.0 || ^0.5"
$ composer require clue/redis-react:^1.1
```

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

## Tests

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

```bash
$ composer install
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "clue/redis-react",
"description": "Async Redis client implementation, built on top of React PHP",
"keywords": ["Redis", "client", "async", "reactphp"],
"description": "Async Redis client implementation, built on top of ReactPHP",
"keywords": ["Redis", "client", "async", "ReactPHP"],
"homepage": "https://github.com/clue/php-redis-react",
"license": "MIT",
"authors": [
Expand Down

0 comments on commit a22406c

Please sign in to comment.