Skip to content

Commit

Permalink
Release v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cabol committed Jun 5, 2022
1 parent 7d9671c commit d7ad962
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 3 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,38 @@ 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.4.0](https://github.com/cabol/nebulex/tree/v2.4.0) (2022-06-05)

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

**Closed issues:**

- Multiple keys deletion at once with predefined query `{:in, keys}`
[#159](https://github.com/cabol/nebulex/issues/159)
- Duplicate data keys when put in replicated cache when start app
[#158](https://github.com/cabol/nebulex/issues/158)
- Option `:cache` admits MFA tuple `{module, function, args}` as value on the
annotated functions
[#157](https://github.com/cabol/nebulex/issues/157)

**Merged pull requests:**

- Allow passing dynamic cache configuration to the decorators
[#156](https://github.com/cabol/nebulex/pull/156)
([suzdalnitski](https://github.com/suzdalnitski))
- Fix typo
[#154](https://github.com/cabol/nebulex/pull/154)
([kianmeng](https://github.com/kianmeng))
- User erlef/setup-beam for GitHub Actions
[#153](https://github.com/cabol/nebulex/pull/153)
([kianmeng](https://github.com/kianmeng))
- Fix typos
[#152](https://github.com/cabol/nebulex/pull/152)
([george124816](https://github.com/george124816))
- Fix config comments
[#150](https://github.com/cabol/nebulex/pull/150)
([alexandrubagu](https://github.com/alexandrubagu))

## [v2.3.2](https://github.com/cabol/nebulex/tree/v2.3.2) (2022-03-29)

[Full Changelog](https://github.com/cabol/nebulex/compare/v2.3.1...v2.3.2)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -63,7 +63,7 @@ For example, if you want to use a built-in cache, add to your `mix.exs` file:
```elixir
def deps do
[
{:nebulex, "~> 2.3"},
{:nebulex, "~> 2.4"},
{:shards, "~> 1.0"}, #=> When using :shards as backend
{:decorator, "~> 1.4"}, #=> When using Caching Annotations
{:telemetry, "~> 1.0"} #=> When using the Telemetry events (Nebulex stats)
Expand Down
2 changes: 1 addition & 1 deletion guides/getting-started.md
Expand Up @@ -29,7 +29,7 @@ changing the `deps` definition in that file to this:
```elixir
defp deps do
[
{:nebulex, "~> 2.3"},
{:nebulex, "~> 2.4"},
{:shards, "~> 1.0"}, #=> When using :shards as backend
{:decorator, "~> 1.4"}, #=> When using Caching Annotations
{:telemetry, "~> 1.0"} #=> When using the Telemetry events (Nebulex stats)
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Expand Up @@ -2,7 +2,7 @@ defmodule Nebulex.MixProject do
use Mix.Project

@source_url "https://github.com/cabol/nebulex"
@version "2.3.2"
@version "2.4.0"

def project do
[
Expand Down

0 comments on commit d7ad962

Please sign in to comment.