File tree Expand file tree Collapse file tree 5 files changed +25
-6
lines changed Expand file tree Collapse file tree 5 files changed +25
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.21.2] ( https://github.com/salsa-rs/salsa/compare/salsa-v0.21.1...salsa-v0.21.2 ) - 2025-05-06
11
+
12
+ ### Fixed
13
+
14
+ - change detection for fixpoint queries ([ #836 ] ( https://github.com/salsa-rs/salsa/pull/836 ) )
15
+
16
+ ### Other
17
+
18
+ - gate loom dependency under feature flag ([ #844 ] ( https://github.com/salsa-rs/salsa/pull/844 ) )
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
+
10
22
## [ 0.21.1] ( https://github.com/salsa-rs/salsa/compare/salsa-v0.21.0...salsa-v0.21.1 ) - 2025-04-30
11
23
12
24
### Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " salsa"
3
- version = " 0.21.1 "
3
+ version = " 0.21.2 "
4
4
authors.workspace = true
5
5
edition.workspace = true
6
6
license.workspace = true
@@ -9,8 +9,8 @@ rust-version.workspace = true
9
9
description = " A generic framework for on-demand, incrementalized computation (experimental)"
10
10
11
11
[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.21.2 " , path = " components/salsa-macro-rules" }
13
+ salsa-macros = { version = " 0.21.2 " , path = " components/salsa-macros" , optional = true }
14
14
15
15
boxcar = " 0.2.11"
16
16
crossbeam-queue = " 0.3.11"
@@ -44,7 +44,7 @@ macros = ["dep:salsa-macros"]
44
44
# which may ultimately result in odd issues due to the proc-macro
45
45
# output mismatching with the declarative macro inputs
46
46
[target .'cfg(any())' .dependencies ]
47
- salsa-macros = { version = " =0.21.1 " , path = " components/salsa-macros" }
47
+ salsa-macros = { version = " =0.21.2 " , path = " components/salsa-macros" }
48
48
49
49
[dev-dependencies ]
50
50
# examples
Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.21.2] ( https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.21.1...salsa-macro-rules-v0.21.2 ) - 2025-05-06
11
+
12
+ ### Other
13
+
14
+ - Add loom support ([ #842 ] ( https://github.com/salsa-rs/salsa/pull/842 ) )
15
+ - Clean up some unsafety ([ #830 ] ( https://github.com/salsa-rs/salsa/pull/830 ) )
16
+
10
17
## [ 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
11
18
12
19
### Other
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " salsa-macro-rules"
3
- version = " 0.21.1 "
3
+ version = " 0.21.2 "
4
4
authors.workspace = true
5
5
edition.workspace = true
6
6
license.workspace = true
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " salsa-macros"
3
- version = " 0.21.1 "
3
+ version = " 0.21.2 "
4
4
authors.workspace = true
5
5
edition.workspace = true
6
6
license.workspace = true
You can’t perform that action at this time.
0 commit comments