Skip to content

Commit a176dda

Browse files
chore: release v0.22.0
1 parent 2d4321e commit a176dda

File tree

6 files changed

+52
-6
lines changed

6 files changed

+52
-6
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.22.0](https://github.com/MichaReiser/salsa/compare/salsa-v0.21.1...salsa-v0.22.0) - 2025-05-20
11+
12+
### Fixed
13+
14+
- fix memo table growth condition ([#850](https://github.com/MichaReiser/salsa/pull/850))
15+
- incorrect caching for queries participating in fixpoint ([#843](https://github.com/MichaReiser/salsa/pull/843))
16+
- change detection for fixpoint queries ([#836](https://github.com/MichaReiser/salsa/pull/836))
17+
18+
### Other
19+
20+
- Implement an `!Update` bound escape hatch for tracked fn ([#867](https://github.com/MichaReiser/salsa/pull/867))
21+
- Only enable `boxcar/loom` when `loom` feature is enabled ([#869](https://github.com/MichaReiser/salsa/pull/869))
22+
- Remove default `PartialOrd` and `Ord` derives for salsa-structs ([#868](https://github.com/MichaReiser/salsa/pull/868))
23+
- update boxcar ([#865](https://github.com/MichaReiser/salsa/pull/865))
24+
- speed-up cycle-retry logic ([#861](https://github.com/MichaReiser/salsa/pull/861))
25+
- Fix returns(deref | as_ref | as_deref) in tracked methods ([#857](https://github.com/MichaReiser/salsa/pull/857))
26+
- Changed `return_ref` syntax to `returns(as_ref)` and `returns(cloned)` ([#772](https://github.com/MichaReiser/salsa/pull/772))
27+
- Work around a rust-analyzer bug ([#855](https://github.com/MichaReiser/salsa/pull/855))
28+
- Lazy finalization of cycle participants in `maybe_changed_after` ([#854](https://github.com/MichaReiser/salsa/pull/854))
29+
- Do not re-verify already verified memoized value in cycle verification ([#851](https://github.com/MichaReiser/salsa/pull/851))
30+
- Pass cycle heads as out parameter for `maybe_changed_after` ([#852](https://github.com/MichaReiser/salsa/pull/852))
31+
- Move salsa event system into `Zalsa` ([#849](https://github.com/MichaReiser/salsa/pull/849))
32+
- gate loom dependency under feature flag ([#844](https://github.com/MichaReiser/salsa/pull/844))
33+
- Add loom support ([#842](https://github.com/MichaReiser/salsa/pull/842))
34+
- Clean up some unsafety ([#830](https://github.com/MichaReiser/salsa/pull/830))
35+
1036
## [0.21.1](https://github.com/salsa-rs/salsa/compare/salsa-v0.21.0...salsa-v0.21.1) - 2025-04-30
1137

1238
### 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.21.1"
3+
version = "0.22.0"
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.21.1", path = "components/salsa-macro-rules" }
13-
salsa-macros = { version = "0.21.1", path = "components/salsa-macros", optional = true }
12+
salsa-macro-rules = { version = "0.22.0", path = "components/salsa-macro-rules" }
13+
salsa-macros = { version = "0.22.0", path = "components/salsa-macros", optional = true }
1414

1515
boxcar = { version = "0.2.12" }
1616
crossbeam-queue = "0.3.11"
@@ -44,7 +44,7 @@ macros = ["dep:salsa-macros"]
4444
# which may ultimately result in odd issues due to the proc-macro
4545
# output mismatching with the declarative macro inputs
4646
[target.'cfg(any())'.dependencies]
47-
salsa-macros = { version = "=0.21.1", path = "components/salsa-macros" }
47+
salsa-macros = { version = "=0.22.0", path = "components/salsa-macros" }
4848

4949
[dev-dependencies]
5050
# examples

components/salsa-macro-rules/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.22.0](https://github.com/MichaReiser/salsa/compare/salsa-macro-rules-v0.21.1...salsa-macro-rules-v0.22.0) - 2025-05-20
11+
12+
### Other
13+
14+
- Remove default `PartialOrd` and `Ord` derives for salsa-structs ([#868](https://github.com/MichaReiser/salsa/pull/868))
15+
- Fix returns(deref | as_ref | as_deref) in tracked methods ([#857](https://github.com/MichaReiser/salsa/pull/857))
16+
- Changed `return_ref` syntax to `returns(as_ref)` and `returns(cloned)` ([#772](https://github.com/MichaReiser/salsa/pull/772))
17+
- Move salsa event system into `Zalsa` ([#849](https://github.com/MichaReiser/salsa/pull/849))
18+
- Add loom support ([#842](https://github.com/MichaReiser/salsa/pull/842))
19+
- Clean up some unsafety ([#830](https://github.com/MichaReiser/salsa/pull/830))
20+
1021
## [0.21.1](https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.21.0...salsa-macro-rules-v0.21.1) - 2025-04-30
1122

1223
### Other

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.21.1"
3+
version = "0.22.0"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

components/salsa-macros/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.22.0](https://github.com/MichaReiser/salsa/compare/salsa-macros-v0.21.1...salsa-macros-v0.22.0) - 2025-05-20
11+
12+
### Other
13+
14+
- Implement an `!Update` bound escape hatch for tracked fn ([#867](https://github.com/MichaReiser/salsa/pull/867))
15+
- Fix returns(deref | as_ref | as_deref) in tracked methods ([#857](https://github.com/MichaReiser/salsa/pull/857))
16+
- Changed `return_ref` syntax to `returns(as_ref)` and `returns(cloned)` ([#772](https://github.com/MichaReiser/salsa/pull/772))
17+
- Move salsa event system into `Zalsa` ([#849](https://github.com/MichaReiser/salsa/pull/849))
18+
1019
## [0.21.0](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.20.0...salsa-macros-v0.21.0) - 2025-04-29
1120

1221
### Fixed

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.21.1"
3+
version = "0.22.0"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

0 commit comments

Comments
 (0)