Skip to content

Commit

Permalink
Prepare for 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zuiderkwast committed May 5, 2022
1 parent 740d333 commit 9c07424
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# CHANGELOG

## v1.5.1

May 2022.

* Solves a bug introduced in v1.5.0 causing the reconnect process to survive
if the client is stopped while attempting to reconnect.

* Drops the spawned process used for reconnecting. Instead, the reconnect
attempts are scheduled using timers.

The option `reconnect_sleep` now applies to the time between a
successful connect and the first reconnect attemt, if the connection is lost
just after connecting. However, there is no delay before reconnecting
if the connection has been up for at least `reconnect_sleep' milliseconds.

## v1.5.0

May 2022.
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.5.0"
@version "1.5.1"

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.5.0"},
{vsn,"1.5.1"},
{modules,[eredis,eredis_client,eredis_parser,eredis_sub,
eredis_sub_client]},
{registered,[]},
Expand Down

1 comment on commit 9c07424

@zuiderkwast
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I created git tags only. I think I need to click in github's web interface somehow. I'll try.

Please sign in to comment.