From 2e709f15d7f0a77724e40b95547e3dba67588ade Mon Sep 17 00:00:00 2001 From: cabol Date: Sun, 13 Mar 2022 08:47:29 +0100 Subject: [PATCH] Release v2.3.1 --- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- guides/getting-started.md | 2 +- mix.exs | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c545148a..3a305f49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ 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.3.1](https://github.com/cabol/nebulex/tree/v2.3.1) (2022-03-13) + +[Full Changelog](https://github.com/cabol/nebulex/compare/v2.3.0...v2.3.1) + +**Implemented enhancements:** + +- Improve cache memory/size checks for local adapter + [#145](https://github.com/cabol/nebulex/issues/145) + +**Closed issues:** + +- What happens if cache uses more memory than the machine have? + [#144](https://github.com/cabol/nebulex/issues/144) + ## [v2.3.0](https://github.com/cabol/nebulex/tree/v2.3.0) (2021-11-13) [Full Changelog](https://github.com/cabol/nebulex/compare/v2.2.1...v2.3.0) diff --git a/README.md b/README.md index a6fc171f..e722f2e8 100644 --- a/README.md +++ b/README.md @@ -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.2"}, + {:nebulex, "~> 2.3"}, {: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) diff --git a/guides/getting-started.md b/guides/getting-started.md index 4ed1a24b..e5457c02 100644 --- a/guides/getting-started.md +++ b/guides/getting-started.md @@ -29,7 +29,7 @@ changing the `deps` definition in that file to this: ```elixir defp deps do [ - {:nebulex, "~> 2.2"}, + {:nebulex, "~> 2.3"}, {: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) diff --git a/mix.exs b/mix.exs index f5a9f574..52aecc08 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Nebulex.MixProject do use Mix.Project @source_url "https://github.com/cabol/nebulex" - @version "2.3.0" + @version "2.3.1" def project do [