Skip to content

Commit

Permalink
Update the README and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuya6502 committed Sep 3, 2023
1 parent a2b916a commit 8b8d979
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
12 changes: 5 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
## Version 0.12.0 (Currently Beta)

**ATTENTION**: `v0.12.0` has major breaking changes on the API and internal behavior.
Please read the [MIGRATION-GUIDE.md][migration-guide-v012] for the details.

**`sync` caches are no longer enabled by default**: Please use a crate feature `sync`
to enable it.
Expand All @@ -20,15 +19,15 @@ to enable it.
eviction listener was removed. Now all cache types work as if the `Immediate`
delivery mode is specified.

Please read the [MIGRATION-GUIDE.md][migration-guide-v012] for more details.

[migration-guide-v012]: ./MIGRATION-GUIDE.md#migrating-to-v0120-from-a-prior-version

### Changed

- Remove the thread pool from `sync` caches. ([#316][gh-pull-0316])
- Remove the thread pool from `future` cache`. ([#294][gh-pull-0294])
- Add support for `Immediate` notification delivery mode to future cache.
([#228][gh-issue-0228])
- Improve async cancellation safety of `future::Cache`. ([#309][gh-pull-0309])
- Removed the thread pool from `future` cache ([#294][gh-pull-0294]) and `sync`
caches ([#316][gh-pull-0316]).
- Improved async cancellation safety of `future::Cache`. ([#309][gh-pull-0309])


## Version 0.11.3
Expand Down Expand Up @@ -702,7 +701,6 @@ The minimum supported Rust version (MSRV) is now 1.51.0 (Mar 25, 2021).
[gh-issue-0243]: https://github.com/moka-rs/moka/issues/243/
[gh-issue-0242]: https://github.com/moka-rs/moka/issues/242/
[gh-issue-0230]: https://github.com/moka-rs/moka/issues/230/
[gh-issue-0228]: https://github.com/moka-rs/moka/issues/228/
[gh-issue-0212]: https://github.com/moka-rs/moka/issues/212/
[gh-issue-0207]: https://github.com/moka-rs/moka/issues/207/
[gh-issue-0162]: https://github.com/moka-rs/moka/issues/162/
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/moka-rs/moka"
keywords = ["cache", "concurrent"]
categories = ["caching", "concurrency"]
readme = "README.md"
exclude = [".circleci", ".devcontainer", ".github", ".gitpod.yml", ".vscode"]
exclude = [".circleci", ".cirrus.yml-DISABLED", ".devcontainer", ".github", ".gitpod.yml", ".vscode"]
build = "build.rs"

[features]
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -532,15 +532,16 @@ $ cargo +nightly -Z unstable-options --config 'build.rustdocflags="--cfg docsrs"
- [x] Variable (per-entry) expiration, using a hierarchical timer wheel.
(`v0.11.0` via [#248][gh-pull-248])
- [ ] Cache statistics. (Hit rate, etc.)
- [x] Remove background threads. (`v0.12.0` via [#294][gh-pull-294] and [#???][gh-pull-qqq])
- [x] Remove background threads. (`v0.12.0` via [#294][gh-pull-294] and
[#316][gh-pull-316])
- [ ] Upgrade TinyLFU to Window-TinyLFU. ([details][tiny-lfu])

[gh-pull-024]: https://github.com/moka-rs/moka/pull/24
[gh-pull-105]: https://github.com/moka-rs/moka/pull/105
[gh-pull-145]: https://github.com/moka-rs/moka/pull/145
[gh-pull-248]: https://github.com/moka-rs/moka/pull/248
[gh-pull-294]: https://github.com/moka-rs/moka/pull/294
[gh-pull-qqq]: https://github.com/moka-rs/moka/pull/qqq
[gh-pull-316]: https://github.com/moka-rs/moka/pull/316


## About the Name
Expand Down

0 comments on commit 8b8d979

Please sign in to comment.