Skip to content

Commit 9c07424

Browse files
committed
Prepare for 1.5.1
1 parent 740d333 commit 9c07424

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# CHANGELOG
22

3+
## v1.5.1
4+
5+
May 2022.
6+
7+
* Solves a bug introduced in v1.5.0 causing the reconnect process to survive
8+
if the client is stopped while attempting to reconnect.
9+
10+
* Drops the spawned process used for reconnecting. Instead, the reconnect
11+
attempts are scheduled using timers.
12+
13+
The option `reconnect_sleep` now applies to the time between a
14+
successful connect and the first reconnect attemt, if the connection is lost
15+
just after connecting. However, there is no delay before reconnecting
16+
if the connection has been up for at least `reconnect_sleep' milliseconds.
17+
318
## v1.5.0
419

520
May 2022.

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Eredis.Mixfile do
22
use Mix.Project
33

44
@source_url "https://github.com/Nordix/eredis/"
5-
@version "1.5.0"
5+
@version "1.5.1"
66

77
def project do
88
[

src/eredis.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application,eredis,
22
[{description,"Erlang Redis Client"},
3-
{vsn,"1.5.0"},
3+
{vsn,"1.5.1"},
44
{modules,[eredis,eredis_client,eredis_parser,eredis_sub,
55
eredis_sub_client]},
66
{registered,[]},

0 commit comments

Comments
 (0)