Skip to content

Commit

Permalink
Release v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bjosv committed Jul 27, 2022
1 parent 7a0294d commit 0a25722
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# CHANGELOG

## v1.7.0

July 2022.

* Replaces `error_logger` with `logger`.

* Turns repeated reconnection errors into log level `notice`.

* Parser optimizations.

* Enables performance tuning of the received packets handling.
The socket is set to `{active, N}` with N = 10 by default.
This is configurable by including `{active, N}` in the socket options or
in the TLS options when TLS is used.

Note that `{active, N}` with TLS requires OTP 21.3 or later.
When using OTP below 21.3 the option needs to be set to `{active, true}`.

## v1.6.0

July 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.6.0"
@version "1.7.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.6.0"},
{vsn,"1.7.0"},
{modules,[eredis,eredis_client,eredis_parser,eredis_sub,
eredis_sub_client, eredis_sentinel]},
{registered,[]},
Expand Down

0 comments on commit 0a25722

Please sign in to comment.