Skip to content

Commit 8e0dcc0

Browse files
committed
Rollback package.json version and changelog.md
Adjust the README.md section
1 parent 40f85aa commit 8e0dcc0

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@ limits total time for client to reconnect. Value is provided in milliseconds and
210210
* `max_attempts` defaults to `null`. By default client will try reconnecting until connected. Setting `max_attempts`
211211
limits total amount of reconnects.
212212
* `auth_pass` defaults to `null`. By default client will try connecting without auth. If set, client will run redis auth command on connect.
213-
* `family` defaults to `IPv4`. By default client will try connecting with a IPv4 DNS resolution when a FQDN host is set. You can also specify and IPv6 for forcing a IPv6 FQDN resolution.
213+
* `family` defaults to `IPv4`. The client connects in IPv4 if not specified or if the DNS resolution returns an IPv4 address.
214+
You can force an IPv6 if you set the family to 'IPv6'. See nodejs net or dns modules how to use the family type.
214215

215216
```js
216217
var redis = require("redis"),

changelog.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
Changelog
22
=========
33

4-
## v0.10.4 - Jun 23, 2014
5-
6-
* Add redis-cli createClient(port, host, options) full IPv6 Network capability
7-
Specify the family type IPv4 or IPv6 in the options object.
8-
9-
eg: { 'family' : 'IPv6' }
10-
114
## v0.10.3 - May 22, 2014
125

136
* Update command list to match Redis 2.8.9 (Charles Feng)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redis",
3-
"version": "0.10.4",
3+
"version": "0.10.3",
44
"description": "Redis client library",
55
"keywords": [
66
"redis",

0 commit comments

Comments
 (0)