Skip to content

Commit

Permalink
Release v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cabol committed Mar 13, 2022
1 parent b17def1 commit 2e709f1
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
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.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)
Expand Down
2 changes: 1 addition & 1 deletion guides/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
[
Expand Down

0 comments on commit 2e709f1

Please sign in to comment.