Releases: grempe/ex_rated
Releases · grempe/ex_rated
v2.1.0
What's Changed
- Fix link in moduledoc by @ruudk in #49
- Bump ex_doc from 0.23.0 to 0.24.2 by @dependabot-preview in #52
- Correct the library version in README.md by @mnishiguchi in #53
- Upgrade to GitHub-native Dependabot by @dependabot-preview in #54
- Fix compilation on Elixir 1.13 by @TBK145 in #58
- Bump ex_doc from 0.24.2 to 0.26.0 by @dependabot in #60
New Contributors
- @ruudk made their first contribution in #49
- @mnishiguchi made their first contribution in #53
- @TBK145 made their first contribution in #58
- @dependabot made their first contribution in #60
Full Changelog: v2.0.1...v2.1.0
v2.0.1
v2.0.0
- [BREAKING] Fixes #24 (Avoid GenServer Serialization) [@nabaskes, @benwilson512]
- Improves performance from 2.26 µs/op to 0.89 µs/op (same hardware)
- Breaking due to changed method for configuring
ets_table_name
if overriding.
- Bucket names can be any Erlang term. Fixes #17 [@denvera]
- Update
ex_doc
andex2ms
dependencies. _
prefix unused variables to avoid compilation warnings.- Fix compilation warning with
ets_table_name()
- Added GitHub Elixir test action.
v1.3.1
Change ETS table visibility back to private, fix table name
- Change ETS table visibility back to private
- Change hardcoded table name in tests to context[:exrated_table]
Added `{:persistent, false}` option to server config to allow persisting data to disk.
Allows persisting internal state to disk on shutdown and read it in on startup.
Added delete_bucket/1 and inspect_bucket/1 functions
- Added delete_bucket/1 function. Takes a bucket name and removes it now instead of waiting for pruning (Nick Sanders).
- Added inspect_bucket/3 function. Returns metadata about buckets (Nick Sanders).