Skip to content

Commit 271b800

Browse files
committed
Prepare v0.3.1 release
1 parent f1e8467 commit 271b800

File tree

2 files changed

+26
-15
lines changed

2 files changed

+26
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# CHANGELOG
1+
# Changelog
22

3-
This file is a manually maintained list of changes for each release. Feel free
4-
to add your changes here when sending pull requests. Also send corrections if
5-
you spot any mistakes.
3+
## 0.3.1 (2017-06-06)
4+
5+
* Fix: Fix server-side parsing of legacy inline protocol when multiple requests are processed at once
6+
(#12 by @kelunik and #13 by @clue)
67

78
## 0.3.0 (2014-01-27)
89

README.md

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
A streaming redis protocol parser and serializer written in PHP
44

5-
## Introduction
6-
75
This parser and serializer implementation allows you to parse redis protocol
86
messages into native PHP values and vice-versa. This is usually needed by a
97
redis client implementation which also handles the connection socket.
@@ -15,6 +13,17 @@ for you. If you merely want to connect to a redis server and issue some
1513
commands, you're probably better off using one of the existing client
1614
implementations.
1715

16+
**Table of contents**
17+
18+
* [Quickstart example](#quickstart-example)
19+
* [Usage](#usage)
20+
* [Factory](#factory)
21+
* [Parser](#parser)
22+
* [Model](#model)
23+
* [Serializer](#serializer)
24+
* [Install](#install)
25+
* [License](#license)
26+
1827
## Quickstart example
1928

2029
```php
@@ -108,18 +117,19 @@ assert($model implement Model\MultiBulkReply);
108117

109118
## Install
110119

111-
It's very unlikely you'll want to use this protocol parser standalone. It should
112-
be added as a dependency to your redis client implementation by adding it to
113-
your composer.json:
120+
It's very unlikely you'll want to use this protocol parser standalone.
121+
It should be added as a dependency to your redis client implementation instead.
122+
The recommended way to install this library is [through Composer](https://getcomposer.org).
123+
[New to Composer?](https://getcomposer.org/doc/00-intro.md)
114124

115-
```JSON
116-
{
117-
"require": {
118-
"clue/redis-protocol": "0.3.*"
119-
}
120-
}
125+
This will install the latest supported version:
126+
127+
```bash
128+
$ composer require clue/redis-protocol:^0.3.1
121129
```
122130

131+
More details and upgrade guides can be found in the [CHANGELOG](CHANGELOG.md).
132+
123133
## License
124134

125135
Its parser and serializer originally used to be based on

0 commit comments

Comments
 (0)