Skip to content

Commit c9114d4

Browse files
chore: release v0.26.2 (#1078)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 86bbd77 commit c9114d4

6 files changed

Lines changed: 37 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.26.2](https://github.com/salsa-rs/salsa/compare/salsa-v0.26.1...salsa-v0.26.2) - 2026-05-03
11+
12+
### Fixed
13+
14+
- fix tracked impl db lifetime for as_deref return mode ([#1084](https://github.com/salsa-rs/salsa/pull/1084))
15+
16+
### Other
17+
18+
- Do not use `#[allow(non_local_definitions)]` ([#1090](https://github.com/salsa-rs/salsa/pull/1090))
19+
- Exclude the book from published crates ([#1089](https://github.com/salsa-rs/salsa/pull/1089))
20+
- Detect overlapping supertype variants via leaf type IDs ([#1080](https://github.com/salsa-rs/salsa/pull/1080))
21+
- Bump hashbrown to 0.17 ([#1087](https://github.com/salsa-rs/salsa/pull/1087))
22+
- Expose `Revision::max()` and make it const ([#1086](https://github.com/salsa-rs/salsa/pull/1086))
23+
1024
## [0.26.1](https://github.com/salsa-rs/salsa/compare/salsa-v0.26.0...salsa-v0.26.1) - 2026-03-20
1125

1226
### Other

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.26.1"
3+
version = "0.26.2"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true
@@ -12,8 +12,8 @@ exclude = [
1212
]
1313

1414
[dependencies]
15-
salsa-macro-rules = { version = "0.26.1", path = "components/salsa-macro-rules" }
16-
salsa-macros = { version = "0.26.1", path = "components/salsa-macros", optional = true }
15+
salsa-macro-rules = { version = "0.26.2", path = "components/salsa-macro-rules" }
16+
salsa-macros = { version = "0.26.2", path = "components/salsa-macros", optional = true }
1717

1818
boxcar = "0.2.14"
1919
crossbeam-queue = "0.3.12"
@@ -68,7 +68,7 @@ salsa_unstable = []
6868
# which may ultimately result in odd issues due to the proc-macro
6969
# output mismatching with the declarative macro inputs
7070
[target.'cfg(any())'.dependencies]
71-
salsa-macros = { version = "=0.26.1", path = "components/salsa-macros" }
71+
salsa-macros = { version = "=0.26.2", path = "components/salsa-macros" }
7272

7373
[dev-dependencies]
7474
# examples

components/salsa-macro-rules/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.26.2](https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.26.1...salsa-macro-rules-v0.26.2) - 2026-05-03
11+
12+
### Other
13+
14+
- Do not use `#[allow(non_local_definitions)]` ([#1090](https://github.com/salsa-rs/salsa/pull/1090))
15+
- Detect overlapping supertype variants via leaf type IDs ([#1080](https://github.com/salsa-rs/salsa/pull/1080))
16+
1017
## [0.26.0](https://github.com/salsa-rs/salsa/compare/salsa-macro-rules-v0.25.2...salsa-macro-rules-v0.26.0) - 2026-02-02
1118

1219
### Added

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.26.1"
3+
version = "0.26.2"
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.26.2](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.26.1...salsa-macros-v0.26.2) - 2026-05-03
11+
12+
### Fixed
13+
14+
- fix tracked impl db lifetime for as_deref return mode ([#1084](https://github.com/salsa-rs/salsa/pull/1084))
15+
16+
### Other
17+
18+
- Detect overlapping supertype variants via leaf type IDs ([#1080](https://github.com/salsa-rs/salsa/pull/1080))
19+
1020
## [0.26.1](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.26.0...salsa-macros-v0.26.1) - 2026-03-20
1121

1222
### Other

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

0 commit comments

Comments
 (0)