From 79ebdbbc2710cbd93232d1077aa415d133e288b6 Mon Sep 17 00:00:00 2001 From: cabol Date: Sat, 15 May 2021 18:45:47 +0200 Subject: [PATCH] Release v2.1.0 --- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05e3db0..2258876 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +All notable changes to this project will be documented in this file. + +This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v2.1.0](https://github.com/cabol/nebulex_redis_adapter/tree/v2.1.0) (2021-05-15) + +[Full Changelog](https://github.com/cabol/nebulex_redis_adapter/compare/v2.0.0...v2.1.0) + +**Added features:** + +- Instrument the adapter with Telemetry events + [#27](https://github.com/cabol/nebulex_redis_adapter/issues/27) + +**Merged pull requests:** + +- Fix Small Typo on `NebulexRedisAdapter.fix_ttl/1` + [#26](https://github.com/cabol/nebulex_redis_adapter/pull/26) + ([lucas-cegatti](https://github.com/lucas-cegatti)) + ## [v2.0.0](https://github.com/cabol/nebulex_redis_adapter/tree/v2.0.0) (2021-02-20) [Full Changelog](https://github.com/cabol/nebulex_redis_adapter/compare/v2.0.0-rc.1...v2.0.0) diff --git a/README.md b/README.md index f39ffcf..41419ea 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Add `nebulex_redis_adapter` to your list of dependencies in `mix.exs`: ```elixir defp deps do [ - {:nebulex_redis_adapter, "~> 2.0.0"}, + {:nebulex_redis_adapter, "~> 2.1"}, {:crc, "~> 0.10"}, #=> Needed when using Redis Cluster {:jchash, "~> 0.1.2"} #=> Needed when using consistent-hashing ]