Skip to content

Commit 1c97927

Browse files
chore: release v0.21.0
1 parent 5b5e982 commit 1c97927

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

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.21.1](https://github.com/MichaReiser/salsa/compare/salsa-v0.21.0...salsa-v0.21.1) - 2025-04-30
11+
12+
### Added
13+
14+
- Make `attach` pub ([#832](https://github.com/MichaReiser/salsa/pull/832))
15+
16+
### Other
17+
18+
- Clean up `function::execute` ([#833](https://github.com/MichaReiser/salsa/pull/833))
19+
- Change an `assert!` to `assert_eq!` ([#828](https://github.com/MichaReiser/salsa/pull/828))
20+
1021
## [0.21.0](https://github.com/salsa-rs/salsa/compare/salsa-v0.20.0...salsa-v0.21.0) - 2025-04-29
1122

1223
### Fixed

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.0"
3+
version = "0.21.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.21.0", path = "components/salsa-macro-rules" }
13-
salsa-macros = { version = "0.21.0", path = "components/salsa-macros", optional = true }
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 }
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.21.0", path = "components/salsa-macros" }
45+
salsa-macros = { version = "=0.21.1", path = "components/salsa-macros" }
4646

4747
[dev-dependencies]
4848
# examples

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

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

0 commit comments

Comments
 (0)