Skip to content

Commit 8421dec

Browse files
chore: release v0.20.0
1 parent 2253999 commit 8421dec

File tree

6 files changed

+69
-6
lines changed

6 files changed

+69
-6
lines changed

Diff for: CHANGELOG.md

+40
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,46 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.20.0](https://github.com/salsa-rs/salsa/compare/salsa-v0.19.0...salsa-v0.20.0) - 2025-04-05
11+
12+
### Added
13+
14+
- Drop `Debug` requirements and flip implementation defaults ([#756](https://github.com/salsa-rs/salsa/pull/756))
15+
16+
### Fixed
17+
18+
- `#[doc(hidden)]` `plumbing` module ([#781](https://github.com/salsa-rs/salsa/pull/781))
19+
- Use `changed_at` revision when updating fields ([#778](https://github.com/salsa-rs/salsa/pull/778))
20+
21+
### Other
22+
23+
- Keep edge condvar on stack instead of allocating it in an `Arc` ([#773](https://github.com/salsa-rs/salsa/pull/773))
24+
- allow reuse of cached provisional memos within the same cycle iteration ([#786](https://github.com/salsa-rs/salsa/pull/786))
25+
- Implement `Lookup`/`HashEqLike` for `Arc` ([#784](https://github.com/salsa-rs/salsa/pull/784))
26+
- Normalize imports style ([#779](https://github.com/salsa-rs/salsa/pull/779))
27+
- Clean up `par_map` a bit ([#742](https://github.com/salsa-rs/salsa/pull/742))
28+
- Fix typo in comment ([#777](https://github.com/salsa-rs/salsa/pull/777))
29+
- Document most safety blocks ([#776](https://github.com/salsa-rs/salsa/pull/776))
30+
- Use html directory for mdbook artifact ([#774](https://github.com/salsa-rs/salsa/pull/774))
31+
- Move `verified_final` from `Memo` into `QueryRevisions` ([#769](https://github.com/salsa-rs/salsa/pull/769))
32+
- Use `ThinVec` for `MemoTable`, halving its size ([#770](https://github.com/salsa-rs/salsa/pull/770))
33+
- Remove unnecessary query stack acess in `block_on` ([#771](https://github.com/salsa-rs/salsa/pull/771))
34+
- Replace memo queue with append-only vector ([#767](https://github.com/salsa-rs/salsa/pull/767))
35+
- update boxcar ([#696](https://github.com/salsa-rs/salsa/pull/696))
36+
- Remove extra page indirection in `Table` ([#710](https://github.com/salsa-rs/salsa/pull/710))
37+
- update release steps ([#705](https://github.com/salsa-rs/salsa/pull/705))
38+
- Remove some unnecessary panicking paths in cycle execution ([#765](https://github.com/salsa-rs/salsa/pull/765))
39+
- *(perf)* Pool `ActiveQuerys` in the query stack ([#629](https://github.com/salsa-rs/salsa/pull/629))
40+
- Resolve unwind safety fixme ([#761](https://github.com/salsa-rs/salsa/pull/761))
41+
- Enable Garbage Collection for Interned Values ([#602](https://github.com/salsa-rs/salsa/pull/602))
42+
- bug [salsa-macros]: Improve debug name of tracked methods ([#755](https://github.com/salsa-rs/salsa/pull/755))
43+
- Remove dead code ([#764](https://github.com/salsa-rs/salsa/pull/764))
44+
- Reduce unnecessary conditional work in `deep_verify_memo` ([#759](https://github.com/salsa-rs/salsa/pull/759))
45+
- Use a `Vec` for `CycleHeads` ([#760](https://github.com/salsa-rs/salsa/pull/760))
46+
- Use nextest for miri test runs ([#758](https://github.com/salsa-rs/salsa/pull/758))
47+
- Pin `half` version to prevent CI failure ([#757](https://github.com/salsa-rs/salsa/pull/757))
48+
- rewrite cycle handling to support fixed-point iteration ([#603](https://github.com/salsa-rs/salsa/pull/603))
49+
1050
## [0.19.0](https://github.com/salsa-rs/salsa/compare/salsa-v0.18.0...salsa-v0.19.0) - 2025-03-10
1151

1252
### Fixed

Diff for: Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "salsa"
3-
version = "0.19.0"
3+
version = "0.20.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.19.0", path = "components/salsa-macro-rules" }
13-
salsa-macros = { version = "0.19.0", path = "components/salsa-macros", optional = true }
12+
salsa-macro-rules = { version = "0.20.0", path = "components/salsa-macro-rules" }
13+
salsa-macros = { version = "0.20.0", path = "components/salsa-macros", optional = true }
1414

1515
boxcar = "0.2.11"
1616
crossbeam-queue = "0.3.11"
@@ -42,7 +42,7 @@ macros = ["dep:salsa-macros"]
4242
# which may ultimately result in odd issues due to the proc-macro
4343
# output mismatching with the declarative macro inputs
4444
[target.'cfg(any())'.dependencies]
45-
salsa-macros = { version = "=0.19.0", path = "components/salsa-macros" }
45+
salsa-macros = { version = "=0.20.0", path = "components/salsa-macros" }
4646

4747
[dev-dependencies]
4848
# examples

Diff for: components/salsa-macro-rules/CHANGELOG.md

+10
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.20.0](https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.19.0...salsa-macro-rules-v0.20.0) - 2025-04-05
11+
12+
### Added
13+
14+
- Drop `Debug` requirements and flip implementation defaults ([#756](https://github.com/salsa-rs/salsa/pull/756))
15+
16+
### Other
17+
18+
- rewrite cycle handling to support fixed-point iteration ([#603](https://github.com/salsa-rs/salsa/pull/603))
19+
1020
## [0.19.0](https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.18.0...salsa-macro-rules-v0.19.0) - 2025-03-10
1121

1222
### Other

Diff for: components/salsa-macro-rules/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "salsa-macro-rules"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

Diff for: components/salsa-macros/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.20.0](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.19.0...salsa-macros-v0.20.0) - 2025-04-05
11+
12+
### Added
13+
14+
- Drop `Debug` requirements and flip implementation defaults ([#756](https://github.com/salsa-rs/salsa/pull/756))
15+
16+
### Other
17+
18+
- Normalize imports style ([#779](https://github.com/salsa-rs/salsa/pull/779))
19+
- Document most safety blocks ([#776](https://github.com/salsa-rs/salsa/pull/776))
20+
- bug [salsa-macros]: Improve debug name of tracked methods ([#755](https://github.com/salsa-rs/salsa/pull/755))
21+
- rewrite cycle handling to support fixed-point iteration ([#603](https://github.com/salsa-rs/salsa/pull/603))
22+
1023
## [0.19.0](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.18.0...salsa-macros-v0.19.0) - 2025-03-10
1124

1225
### Fixed

Diff for: components/salsa-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "salsa-macros"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

0 commit comments

Comments
 (0)