Skip to content

Commit d7ad962

Browse files
committed
Release v2.4.0
1 parent 7d9671c commit d7ad962

File tree

4 files changed

+35
-3
lines changed

4 files changed

+35
-3
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,38 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [v2.4.0](https://github.com/cabol/nebulex/tree/v2.4.0) (2022-06-05)
8+
9+
[Full Changelog](https://github.com/cabol/nebulex/compare/v2.3.2...v2.4.0)
10+
11+
**Closed issues:**
12+
13+
- Multiple keys deletion at once with predefined query `{:in, keys}`
14+
[#159](https://github.com/cabol/nebulex/issues/159)
15+
- Duplicate data keys when put in replicated cache when start app
16+
[#158](https://github.com/cabol/nebulex/issues/158)
17+
- Option `:cache` admits MFA tuple `{module, function, args}` as value on the
18+
annotated functions
19+
[#157](https://github.com/cabol/nebulex/issues/157)
20+
21+
**Merged pull requests:**
22+
23+
- Allow passing dynamic cache configuration to the decorators
24+
[#156](https://github.com/cabol/nebulex/pull/156)
25+
([suzdalnitski](https://github.com/suzdalnitski))
26+
- Fix typo
27+
[#154](https://github.com/cabol/nebulex/pull/154)
28+
([kianmeng](https://github.com/kianmeng))
29+
- User erlef/setup-beam for GitHub Actions
30+
[#153](https://github.com/cabol/nebulex/pull/153)
31+
([kianmeng](https://github.com/kianmeng))
32+
- Fix typos
33+
[#152](https://github.com/cabol/nebulex/pull/152)
34+
([george124816](https://github.com/george124816))
35+
- Fix config comments
36+
[#150](https://github.com/cabol/nebulex/pull/150)
37+
([alexandrubagu](https://github.com/alexandrubagu))
38+
739
## [v2.3.2](https://github.com/cabol/nebulex/tree/v2.3.2) (2022-03-29)
840

941
[Full Changelog](https://github.com/cabol/nebulex/compare/v2.3.1...v2.3.2)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ For example, if you want to use a built-in cache, add to your `mix.exs` file:
6363
```elixir
6464
def deps do
6565
[
66-
{:nebulex, "~> 2.3"},
66+
{:nebulex, "~> 2.4"},
6767
{:shards, "~> 1.0"}, #=> When using :shards as backend
6868
{:decorator, "~> 1.4"}, #=> When using Caching Annotations
6969
{:telemetry, "~> 1.0"} #=> When using the Telemetry events (Nebulex stats)

guides/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ changing the `deps` definition in that file to this:
2929
```elixir
3030
defp deps do
3131
[
32-
{:nebulex, "~> 2.3"},
32+
{:nebulex, "~> 2.4"},
3333
{:shards, "~> 1.0"}, #=> When using :shards as backend
3434
{:decorator, "~> 1.4"}, #=> When using Caching Annotations
3535
{:telemetry, "~> 1.0"} #=> When using the Telemetry events (Nebulex stats)

mix.exs

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

44
@source_url "https://github.com/cabol/nebulex"
5-
@version "2.3.2"
5+
@version "2.4.0"
66

77
def project do
88
[

0 commit comments

Comments
 (0)