Skip to content

Commit 974f54e

Browse files
committedMay 27, 2023
Release v2.5.1
·
v3.0.0-rc.1v2.5.1
1 parent c6d8d18 commit 974f54e

File tree

5 files changed

+20
-7
lines changed

5 files changed

+20
-7
lines changed
 

‎CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ 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.5.1](https://github.com/cabol/nebulex/tree/v2.5.1) (2023-05-27)
8+
9+
[Full Changelog](https://github.com/cabol/nebulex/compare/v2.5.0...v2.5.1)
10+
11+
**Merged pull requests:**
12+
13+
- Fix `nil` check in `Nebulex.Adapters.Multilevel.get/3`
14+
[#205](https://github.com/cabol/nebulex/pull/205)
15+
([1100x1100](https://github.com/1100x1100))
16+
- `mix nbx.gen.cache` example fixed
17+
[#204](https://github.com/cabol/nebulex/pull/204)
18+
([hissssst](https://github.com/hissssst))
19+
720
## [v2.5.0](https://github.com/cabol/nebulex/tree/v2.5.0) (2023-05-13)
821

922
[Full Changelog](https://github.com/cabol/nebulex/compare/v2.4.2...v2.5.0)

‎README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ For example, if you want to use a built-in cache, add to your `mix.exs` file:
6868
```elixir
6969
def deps do
7070
[
71-
{:nebulex, "~> 2.4"},
72-
{:shards, "~> 1.0"}, #=> When using :shards as backend
71+
{:nebulex, "~> 2.5"},
72+
{:shards, "~> 1.1"}, #=> When using :shards as backend
7373
{:decorator, "~> 1.4"}, #=> When using Caching Annotations
7474
{:telemetry, "~> 1.0"} #=> When using the Telemetry events (Nebulex stats)
7575
]

‎guides/creating-new-adapter.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Now let's modify `mix.exs` so that we could fetch Nebulex repository.
2323
defmodule NebulexMemoryAdapter.MixProject do
2424
use Mix.Project
2525

26-
@nbx_vsn "2.4.2"
26+
@nbx_vsn "2.5.0"
2727
@version "0.1.0"
2828

2929
def project do
@@ -231,10 +231,10 @@ mix test
231231
54) test put_all/2 puts the given entries using different data types at once (NebulexMemoryAdapterTest)
232232
test/nebulex_memory_adapter_test.exs:128
233233
** (UndefinedFunctionError) function NebulexMemoryAdapter.TestCache.delete_all/0 is undefined or private. Did you mean:
234-
234+
235235
* delete/1
236236
* delete/2
237-
237+
238238
stacktrace:
239239
(nebulex_memory_adapter 0.1.0) NebulexMemoryAdapter.TestCache.delete_all()
240240
test/nebulex_memory_adapter_test.exs:9: NebulexMemoryAdapterTest.__ex_unit_setup_0/1

‎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.4"},
32+
{:nebulex, "~> 2.5"},
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.5.0"
5+
@version "2.5.1"
66

77
def project do
88
[

0 commit comments

Comments
 (0)
Please sign in to comment.