Skip to content

Commit 2e709f1

Browse files
committed
Release v2.3.1
1 parent b17def1 commit 2e709f1

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ 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.3.1](https://github.com/cabol/nebulex/tree/v2.3.1) (2022-03-13)
8+
9+
[Full Changelog](https://github.com/cabol/nebulex/compare/v2.3.0...v2.3.1)
10+
11+
**Implemented enhancements:**
12+
13+
- Improve cache memory/size checks for local adapter
14+
[#145](https://github.com/cabol/nebulex/issues/145)
15+
16+
**Closed issues:**
17+
18+
- What happens if cache uses more memory than the machine have?
19+
[#144](https://github.com/cabol/nebulex/issues/144)
20+
721
## [v2.3.0](https://github.com/cabol/nebulex/tree/v2.3.0) (2021-11-13)
822

923
[Full Changelog](https://github.com/cabol/nebulex/compare/v2.2.1...v2.3.0)

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.2"},
66+
{:nebulex, "~> 2.3"},
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.2"},
32+
{:nebulex, "~> 2.3"},
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.0"
5+
@version "2.3.1"
66

77
def project do
88
[

0 commit comments

Comments
 (0)