mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-07-07 21:35:17 +00:00
chore: release v0.23.1
This commit is contained in:
parent
d28d66bf13
commit
0df9fc9067
6 changed files with 29 additions and 6 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.23.1](https://github.com/salsa-rs/salsa/compare/salsa-v0.23.0...salsa-v0.23.1) - 2025-07-04
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix phantom data usage in salsa structs affecting auto traits ([#932](https://github.com/salsa-rs/salsa/pull/932))
|
||||
|
||||
### Other
|
||||
|
||||
- Fix `heap_size` option not being preserved in tracked impls ([#930](https://github.com/salsa-rs/salsa/pull/930))
|
||||
- update papaya ([#928](https://github.com/salsa-rs/salsa/pull/928))
|
||||
|
||||
## [0.23.0](https://github.com/salsa-rs/salsa/compare/salsa-v0.22.0...salsa-v0.23.0) - 2025-06-27
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "salsa"
|
||||
version = "0.23.0"
|
||||
version = "0.23.1"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
@ -9,8 +9,8 @@ rust-version.workspace = true
|
|||
description = "A generic framework for on-demand, incrementalized computation (experimental)"
|
||||
|
||||
[dependencies]
|
||||
salsa-macro-rules = { version = "0.23.0", path = "components/salsa-macro-rules" }
|
||||
salsa-macros = { version = "0.23.0", path = "components/salsa-macros", optional = true }
|
||||
salsa-macro-rules = { version = "0.23.1", path = "components/salsa-macro-rules" }
|
||||
salsa-macros = { version = "0.23.1", path = "components/salsa-macros", optional = true }
|
||||
|
||||
boxcar = "0.2.13"
|
||||
crossbeam-queue = "0.3.11"
|
||||
|
@ -47,7 +47,7 @@ macros = ["dep:salsa-macros"]
|
|||
# which may ultimately result in odd issues due to the proc-macro
|
||||
# output mismatching with the declarative macro inputs
|
||||
[target.'cfg(any())'.dependencies]
|
||||
salsa-macros = { version = "=0.23.0", path = "components/salsa-macros" }
|
||||
salsa-macros = { version = "=0.23.1", path = "components/salsa-macros" }
|
||||
|
||||
[dev-dependencies]
|
||||
# examples
|
||||
|
|
|
@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.23.1](https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.23.0...salsa-macro-rules-v0.23.1) - 2025-07-04
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix phantom data usage in salsa structs affecting auto traits ([#932](https://github.com/salsa-rs/salsa/pull/932))
|
||||
|
||||
## [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
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "salsa-macro-rules"
|
||||
version = "0.23.0"
|
||||
version = "0.23.1"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
|
@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.23.1](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.23.0...salsa-macros-v0.23.1) - 2025-07-04
|
||||
|
||||
### Other
|
||||
|
||||
- Fix `heap_size` option not being preserved in tracked impls ([#930](https://github.com/salsa-rs/salsa/pull/930))
|
||||
|
||||
## [0.23.0](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.22.0...salsa-macros-v0.23.0) - 2025-06-27
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "salsa-macros"
|
||||
version = "0.23.0"
|
||||
version = "0.23.1"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue