File tree Expand file tree Collapse file tree 6 files changed +41
-6
lines changed Expand file tree Collapse file tree 6 files changed +41
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.23.1] ( https://github.com/salsa-rs/salsa/compare/salsa-v0.23.0...salsa-v0.23.1 ) - 2025-07-21
11
+
12
+ ### Fixed
13
+
14
+ - Fix phantom data usage in salsa structs affecting auto traits ([ #932 ] ( https://github.com/salsa-rs/salsa/pull/932 ) )
15
+
16
+ ### Other
17
+
18
+ - remove bounds and type checks from ` IngredientCache ` ([ #937 ] ( https://github.com/salsa-rs/salsa/pull/937 ) )
19
+ - Avoid dynamic dispatch to access memo tables ([ #941 ] ( https://github.com/salsa-rs/salsa/pull/941 ) )
20
+ - optimize page access ([ #940 ] ( https://github.com/salsa-rs/salsa/pull/940 ) )
21
+ - Use ` inventory ` for static ingredient registration ([ #934 ] ( https://github.com/salsa-rs/salsa/pull/934 ) )
22
+ - Fix ` heap_size ` option not being preserved in tracked impls ([ #930 ] ( https://github.com/salsa-rs/salsa/pull/930 ) )
23
+ - update papaya ([ #928 ] ( https://github.com/salsa-rs/salsa/pull/928 ) )
24
+
10
25
## [ 0.23.0] ( https://github.com/salsa-rs/salsa/compare/salsa-v0.22.0...salsa-v0.23.0 ) - 2025-06-27
11
26
12
27
### Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " salsa"
3
- version = " 0.23.0 "
3
+ version = " 0.23.1 "
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.23.0 " , path = " components/salsa-macro-rules" }
13
- salsa-macros = { version = " 0.23.0 " , path = " components/salsa-macros" , optional = true }
12
+ salsa-macro-rules = { version = " 0.23.1 " , path = " components/salsa-macro-rules" }
13
+ salsa-macros = { version = " 0.23.1 " , path = " components/salsa-macros" , optional = true }
14
14
15
15
boxcar = " 0.2.13"
16
16
crossbeam-queue = " 0.3.11"
@@ -50,7 +50,7 @@ macros = ["dep:salsa-macros"]
50
50
# which may ultimately result in odd issues due to the proc-macro
51
51
# output mismatching with the declarative macro inputs
52
52
[target .'cfg(any())' .dependencies ]
53
- salsa-macros = { version = " =0.23.0 " , path = " components/salsa-macros" }
53
+ salsa-macros = { version = " =0.23.1 " , path = " components/salsa-macros" }
54
54
55
55
[dev-dependencies ]
56
56
# examples
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.23.1] ( https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.23.0...salsa-macro-rules-v0.23.1 ) - 2025-07-21
11
+
12
+ ### Fixed
13
+
14
+ - Fix phantom data usage in salsa structs affecting auto traits ([ #932 ] ( https://github.com/salsa-rs/salsa/pull/932 ) )
15
+
16
+ ### Other
17
+
18
+ - remove bounds and type checks from ` IngredientCache ` ([ #937 ] ( https://github.com/salsa-rs/salsa/pull/937 ) )
19
+ - Avoid dynamic dispatch to access memo tables ([ #941 ] ( https://github.com/salsa-rs/salsa/pull/941 ) )
20
+ - Use ` inventory ` for static ingredient registration ([ #934 ] ( https://github.com/salsa-rs/salsa/pull/934 ) )
21
+
10
22
## [ 0.23.0] ( https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.22.0...salsa-macro-rules-v0.23.0 ) - 2025-06-27
11
23
12
24
### Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " salsa-macro-rules"
3
- version = " 0.23.0 "
3
+ version = " 0.23.1 "
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 @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.23.1] ( https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.23.0...salsa-macros-v0.23.1 ) - 2025-07-21
11
+
12
+ ### Other
13
+
14
+ - Avoid dynamic dispatch to access memo tables ([ #941 ] ( https://github.com/salsa-rs/salsa/pull/941 ) )
15
+ - Use ` inventory ` for static ingredient registration ([ #934 ] ( https://github.com/salsa-rs/salsa/pull/934 ) )
16
+ - Fix ` heap_size ` option not being preserved in tracked impls ([ #930 ] ( https://github.com/salsa-rs/salsa/pull/930 ) )
17
+
10
18
## [ 0.23.0] ( https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.22.0...salsa-macros-v0.23.0 ) - 2025-06-27
11
19
12
20
### Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " salsa-macros"
3
- version = " 0.23.0 "
3
+ version = " 0.23.1 "
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