File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
55This project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ v2.2.0] ( https://github.com/cabol/nebulex_redis_adapter/tree/v2.2.0 ) (2022-03-13)
8+
9+ [ Full Changelog] ( https://github.com/cabol/nebulex_redis_adapter/compare/v2.1.2...v2.2.0 )
10+
11+ ** Implemented enhancements:**
12+
13+ - Add ` command/3 ` and ` pipeline/3 ` extended functions
14+ [ #35 ] ( https://github.com/cabol/nebulex_redis_adapter/issues/35 )
15+ - Implement a Registry-based routing pool strategy
16+ [ #34 ] ( https://github.com/cabol/nebulex_redis_adapter/issues/34 )
17+
718## [ v2.1.2] ( https://github.com/cabol/nebulex_redis_adapter/tree/v2.1.2 ) (2021-12-05)
819
920[ Full Changelog] ( https://github.com/cabol/nebulex_redis_adapter/compare/v2.1.1...v2.1.2 )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Add `nebulex_redis_adapter` to your list of dependencies in `mix.exs`:
2626``` elixir
2727defp deps do
2828 [
29- {:nebulex_redis_adapter , " ~> 2.1 " },
29+ {:nebulex_redis_adapter , " ~> 2.2 " },
3030 {:crc , " ~> 0.10" }, # => Needed when using Redis Cluster
3131 {:jchash , " ~> 0.1.2" } # => Needed when using consistent-hashing
3232 ]
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule NebulexRedisAdapter.MixProject do
22 use Mix.Project
33
44 @ source_url "https://github.com/cabol/nebulex_redis_adapter"
5- @ version "2.2.0-dev "
5+ @ version "2.2.0"
66 @ nbx_vsn "2.3.1"
77
88 def project do
You can’t perform that action at this time.
0 commit comments