Skip to content

Commit 5805aca

Browse files
chore: release v0.23.1
1 parent 53cd6b1 commit 5805aca

File tree

6 files changed

+41
-6
lines changed

6 files changed

+41
-6
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.23.1](https://github.com/salsa-rs/salsa/compare/salsa-v0.23.0...salsa-v0.23.1) - 2025-07-21
11+
12+
### Fixed
13+
14+
- Fix phantom data usage in salsa structs affecting auto traits ([#932](https://github.com/salsa-rs/salsa/pull/932))
15+
16+
### Other
17+
18+
- remove bounds and type checks from `IngredientCache` ([#937](https://github.com/salsa-rs/salsa/pull/937))
19+
- Avoid dynamic dispatch to access memo tables ([#941](https://github.com/salsa-rs/salsa/pull/941))
20+
- optimize page access ([#940](https://github.com/salsa-rs/salsa/pull/940))
21+
- Use `inventory` for static ingredient registration ([#934](https://github.com/salsa-rs/salsa/pull/934))
22+
- Fix `heap_size` option not being preserved in tracked impls ([#930](https://github.com/salsa-rs/salsa/pull/930))
23+
- update papaya ([#928](https://github.com/salsa-rs/salsa/pull/928))
24+
1025
## [0.23.0](https://github.com/salsa-rs/salsa/compare/salsa-v0.22.0...salsa-v0.23.0) - 2025-06-27
1126

1227
### Added

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "salsa"
3-
version = "0.23.0"
3+
version = "0.23.1"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true
@@ -9,8 +9,8 @@ rust-version.workspace = true
99
description = "A generic framework for on-demand, incrementalized computation (experimental)"
1010

1111
[dependencies]
12-
salsa-macro-rules = { version = "0.23.0", path = "components/salsa-macro-rules" }
13-
salsa-macros = { version = "0.23.0", path = "components/salsa-macros", optional = true }
12+
salsa-macro-rules = { version = "0.23.1", path = "components/salsa-macro-rules" }
13+
salsa-macros = { version = "0.23.1", path = "components/salsa-macros", optional = true }
1414

1515
boxcar = "0.2.13"
1616
crossbeam-queue = "0.3.11"
@@ -50,7 +50,7 @@ macros = ["dep:salsa-macros"]
5050
# which may ultimately result in odd issues due to the proc-macro
5151
# output mismatching with the declarative macro inputs
5252
[target.'cfg(any())'.dependencies]
53-
salsa-macros = { version = "=0.23.0", path = "components/salsa-macros" }
53+
salsa-macros = { version = "=0.23.1", path = "components/salsa-macros" }
5454

5555
[dev-dependencies]
5656
# examples

components/salsa-macro-rules/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.23.1](https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.23.0...salsa-macro-rules-v0.23.1) - 2025-07-21
11+
12+
### Fixed
13+
14+
- Fix phantom data usage in salsa structs affecting auto traits ([#932](https://github.com/salsa-rs/salsa/pull/932))
15+
16+
### Other
17+
18+
- remove bounds and type checks from `IngredientCache` ([#937](https://github.com/salsa-rs/salsa/pull/937))
19+
- Avoid dynamic dispatch to access memo tables ([#941](https://github.com/salsa-rs/salsa/pull/941))
20+
- Use `inventory` for static ingredient registration ([#934](https://github.com/salsa-rs/salsa/pull/934))
21+
1022
## [0.23.0](https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.22.0...salsa-macro-rules-v0.23.0) - 2025-06-27
1123

1224
### Added

components/salsa-macro-rules/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "salsa-macro-rules"
3-
version = "0.23.0"
3+
version = "0.23.1"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

components/salsa-macros/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.23.1](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.23.0...salsa-macros-v0.23.1) - 2025-07-21
11+
12+
### Other
13+
14+
- Avoid dynamic dispatch to access memo tables ([#941](https://github.com/salsa-rs/salsa/pull/941))
15+
- Use `inventory` for static ingredient registration ([#934](https://github.com/salsa-rs/salsa/pull/934))
16+
- Fix `heap_size` option not being preserved in tracked impls ([#930](https://github.com/salsa-rs/salsa/pull/930))
17+
1018
## [0.23.0](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.22.0...salsa-macros-v0.23.0) - 2025-06-27
1119

1220
### Added

components/salsa-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "salsa-macros"
3-
version = "0.23.0"
3+
version = "0.23.1"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

0 commit comments

Comments
 (0)