Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Changelog

## [Unreleased]
> Staged for the next major release (not yet cut). See the [unreleased migration guide](docs/migrations/2.0-to-unreleased.md).

## [3.0.0-rc.1] - 2026-06-21
> First 3.0 release candidate. The 3.0 API is not final and may change before the 3.0.0 release. See the [migration guide](docs/migrations/2.0-to-unreleased.md).

### Breaking Changes

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cached"
version = "2.0.2"
version = "3.0.0-rc.1"
authors = ["James Kominick <james@kominick.com>"]
description = "Generic cache implementations and simplified function memoization"
repository = "https://github.com/jaemk/cached"
Expand Down Expand Up @@ -48,12 +48,12 @@ redb_store = ["redb", "serde", "rmp-serde", "directories"]
time_stores = []

[dependencies.cached_proc_macro]
version = "2.0.0"
version = "3.0.0-rc.1"
path = "cached_proc_macro"
optional = true

[dependencies.cached_proc_macro_types]
version = "1.0.0"
version = "3.0.0-rc.1"
path = "cached_proc_macro_types"
optional = true

Expand Down
2 changes: 1 addition & 1 deletion cached_proc_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cached_proc_macro"
version = "2.0.0"
version = "3.0.0-rc.1"
authors = ["csos95 <csoscss@gmail.com>", "James Kominick <james@kominick.com>"]
description = "Generic cache implementations and simplified function memoization"
repository = "https://github.com/jaemk/cached"
Expand Down
2 changes: 1 addition & 1 deletion cached_proc_macro_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cached_proc_macro_types"
version = "1.0.0"
version = "3.0.0-rc.1"
authors = ["James Kominick <james@kominick.com>"]
description = "Types used by the cached proc-macro crate"
repository = "https://github.com/jaemk/cached"
Expand Down
Loading