Skip to content

Commit

Permalink
Release 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zuiderkwast committed May 3, 2022
1 parent 4020322 commit f73ebd5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/redis_compability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
include:
- redis-version: 7.0-rc3
- redis-version: 7.0.0
test-target: ct
- redis-version: 6.2.6
test-target: ct
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

## v1.5.0

Not yet released.
May 2022.

* No delay before the first reconnect attempt.

* eredis_sub: Automatic re-subscribe on reconnect. Messages on the
form `{subscribed, Channel, Pid}` are sent to the controlling
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
# eredis (Nordix fork)
# eredis

Non-blocking Redis client with focus on performance and robustness.

[![Build Status](https://github.com/Nordix/eredis/workflows/CI/badge.svg)](https://github.com/Nordix/eredis)
[![Hex pm](https://img.shields.io/hexpm/v/eredis.svg?style=flat)](https://hex.pm/packages/eredis)
[![Hex.pm](https://img.shields.io/hexpm/dt/eredis.svg)](https://hex.pm/packages/eredis)

Improvements and changes in this fork compared to `wooga/eredis` includes
This fork is the official continuation of `wooga/eredis`.
It includes several improvements, such as
TLS support and TCP error handling corrections. See [CHANGELOG.md](CHANGELOG.md)
for details.

Note: This client connects to a standalone Redis node.
For *Redis Cluster*, you need
[eredis_cluster](https://github.com/Nordix/eredis_cluster) or
[ecredis](https://github.com/HalloAppInc/ecredis).

Supported Redis features:

* Any command, through `eredis:q/2,3`
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Eredis.Mixfile do
use Mix.Project

@source_url "https://github.com/Nordix/eredis/"
@version "1.4.1"
@version "1.5.0"

def project do
[
Expand Down
2 changes: 1 addition & 1 deletion src/eredis.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application,eredis,
[{description,"Erlang Redis Client"},
{vsn,"1.4.1"},
{vsn,"1.5.0"},
{modules,[eredis,eredis_client,eredis_parser,eredis_sub,
eredis_sub_client]},
{registered,[]},
Expand Down

0 comments on commit f73ebd5

Please sign in to comment.