Skip to content

Commit a12bf31

Browse files
chore: release v0.22.0 (#840)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e859218 commit a12bf31

File tree

6 files changed

+59
-6
lines changed

6 files changed

+59
-6
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,37 @@ 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/salsa-rs/salsa/compare/salsa-v0.21.1...salsa-v0.22.0) - 2025-05-23
11+
12+
### Fixed
13+
14+
- fix memo table growth condition ([#850](https://github.com/salsa-rs/salsa/pull/850))
15+
- incorrect caching for queries participating in fixpoint ([#843](https://github.com/salsa-rs/salsa/pull/843))
16+
- change detection for fixpoint queries ([#836](https://github.com/salsa-rs/salsa/pull/836))
17+
18+
### Other
19+
20+
- Allow creation of tracked associated functions (without `self`) ([#859](https://github.com/salsa-rs/salsa/pull/859))
21+
- Short-circuit `block-on` if same thread ([#862](https://github.com/salsa-rs/salsa/pull/862))
22+
- Skip release-plz jobs on forks ([#873](https://github.com/salsa-rs/salsa/pull/873))
23+
- Unwind with specific type when encountering an unexpected cycle ([#856](https://github.com/salsa-rs/salsa/pull/856))
24+
- Remove jar mentions from book ([#775](https://github.com/salsa-rs/salsa/pull/775))
25+
- Implement an `!Update` bound escape hatch for tracked fn ([#867](https://github.com/salsa-rs/salsa/pull/867))
26+
- Only enable `boxcar/loom` when `loom` feature is enabled ([#869](https://github.com/salsa-rs/salsa/pull/869))
27+
- Remove default `PartialOrd` and `Ord` derives for salsa-structs ([#868](https://github.com/salsa-rs/salsa/pull/868))
28+
- update boxcar ([#865](https://github.com/salsa-rs/salsa/pull/865))
29+
- speed-up cycle-retry logic ([#861](https://github.com/salsa-rs/salsa/pull/861))
30+
- Fix returns(deref | as_ref | as_deref) in tracked methods ([#857](https://github.com/salsa-rs/salsa/pull/857))
31+
- Changed `return_ref` syntax to `returns(as_ref)` and `returns(cloned)` ([#772](https://github.com/salsa-rs/salsa/pull/772))
32+
- Work around a rust-analyzer bug ([#855](https://github.com/salsa-rs/salsa/pull/855))
33+
- Lazy finalization of cycle participants in `maybe_changed_after` ([#854](https://github.com/salsa-rs/salsa/pull/854))
34+
- Do not re-verify already verified memoized value in cycle verification ([#851](https://github.com/salsa-rs/salsa/pull/851))
35+
- Pass cycle heads as out parameter for `maybe_changed_after` ([#852](https://github.com/salsa-rs/salsa/pull/852))
36+
- Move salsa event system into `Zalsa` ([#849](https://github.com/salsa-rs/salsa/pull/849))
37+
- gate loom dependency under feature flag ([#844](https://github.com/salsa-rs/salsa/pull/844))
38+
- Add loom support ([#842](https://github.com/salsa-rs/salsa/pull/842))
39+
- Clean up some unsafety ([#830](https://github.com/salsa-rs/salsa/pull/830))
40+
1041
## [0.21.1](https://github.com/salsa-rs/salsa/compare/salsa-v0.21.0...salsa-v0.21.1) - 2025-04-30
1142

1243
### 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: 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.22.0](https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.21.1...salsa-macro-rules-v0.22.0) - 2025-05-23
11+
12+
### Other
13+
14+
- Allow creation of tracked associated functions (without `self`) ([#859](https://github.com/salsa-rs/salsa/pull/859))
15+
- Remove default `PartialOrd` and `Ord` derives for salsa-structs ([#868](https://github.com/salsa-rs/salsa/pull/868))
16+
- Fix returns(deref | as_ref | as_deref) in tracked methods ([#857](https://github.com/salsa-rs/salsa/pull/857))
17+
- Changed `return_ref` syntax to `returns(as_ref)` and `returns(cloned)` ([#772](https://github.com/salsa-rs/salsa/pull/772))
18+
- Move salsa event system into `Zalsa` ([#849](https://github.com/salsa-rs/salsa/pull/849))
19+
- Add loom support ([#842](https://github.com/salsa-rs/salsa/pull/842))
20+
- Clean up some unsafety ([#830](https://github.com/salsa-rs/salsa/pull/830))
21+
1022
## [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
1123

1224
### 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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ 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/salsa-rs/salsa/compare/salsa-macros-v0.21.1...salsa-macros-v0.22.0) - 2025-05-23
11+
12+
### Other
13+
14+
- Allow creation of tracked associated functions (without `self`) ([#859](https://github.com/salsa-rs/salsa/pull/859))
15+
- Implement an `!Update` bound escape hatch for tracked fn ([#867](https://github.com/salsa-rs/salsa/pull/867))
16+
- Fix returns(deref | as_ref | as_deref) in tracked methods ([#857](https://github.com/salsa-rs/salsa/pull/857))
17+
- Changed `return_ref` syntax to `returns(as_ref)` and `returns(cloned)` ([#772](https://github.com/salsa-rs/salsa/pull/772))
18+
- Move salsa event system into `Zalsa` ([#849](https://github.com/salsa-rs/salsa/pull/849))
19+
1020
## [0.21.0](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.20.0...salsa-macros-v0.21.0) - 2025-04-29
1121

1222
### 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)