Skip to content

Commit

Permalink
Chore: prepare 0.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mindreframer committed Sep 9, 2024
1 parent 226d1b0 commit a72ad3d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## v0.1.1 (2024-09-09)

### Quality of life improvements

- allow configuring default ttl when starting the server
- implements a periodic configurable purge of expired entries
- handles exectiptions when the MFA call raises
- some readme updates

## v0.1.0 (2024-09-06)

### First release
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GenCache

Generic cache for Elixir. It uses MFA tuples as keys, so you can cache any function call with low development effort.
Generic cache for Elixir. It uses MFA (module / function / arguments) tuples as keys, so you can cache any function call with low development effort.

By relying on `gen_statem`, it is able to prevent duplicate work on concurrent requests on the same key, while keeping the API simple.

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 GenCache.MixProject do
use Mix.Project

@github_url "https://github.com/maxohq/gen_cache"
@version "0.1.0"
@version "0.1.1"
@description "gen_statem based generic cache with MFA-based keys"

def project do
Expand Down

0 comments on commit a72ad3d

Please sign in to comment.