Skip to content

Commit 92ed9fd

Browse files
chore: release v0.26.1 (#1076)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b2c3a16 commit 92ed9fd

5 files changed

Lines changed: 19 additions & 6 deletions

File tree

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.1](https://github.com/salsa-rs/salsa/compare/salsa-v0.26.0...salsa-v0.26.1) - 2026-03-20
11+
12+
### Other
13+
14+
- Bump the edition to 2024 ([#1073](https://github.com/salsa-rs/salsa/pull/1073))
15+
- Don't panic if a query branched on an untracked state ([#1075](https://github.com/salsa-rs/salsa/pull/1075))
16+
1017
## [0.26.0](https://github.com/salsa-rs/salsa/compare/salsa-v0.25.2...salsa-v0.26.0) - 2026-02-02
1118

1219
### Added

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.0"
3+
version = "0.26.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.26.0", path = "components/salsa-macro-rules" }
13-
salsa-macros = { version = "0.26.0", path = "components/salsa-macros", optional = true }
12+
salsa-macro-rules = { version = "0.26.1", path = "components/salsa-macro-rules" }
13+
salsa-macros = { version = "0.26.1", path = "components/salsa-macros", optional = true }
1414

1515
boxcar = "0.2.13"
1616
crossbeam-queue = "0.3.12"
@@ -64,7 +64,7 @@ salsa_unstable = []
6464
# which may ultimately result in odd issues due to the proc-macro
6565
# output mismatching with the declarative macro inputs
6666
[target.'cfg(any())'.dependencies]
67-
salsa-macros = { version = "=0.26.0", path = "components/salsa-macros" }
67+
salsa-macros = { version = "=0.26.1", path = "components/salsa-macros" }
6868

6969
[dev-dependencies]
7070
# 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.26.0"
3+
version = "0.26.1"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

components/salsa-macros/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.26.1](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.26.0...salsa-macros-v0.26.1) - 2026-03-20
11+
12+
### Other
13+
14+
- Bump the edition to 2024 ([#1073](https://github.com/salsa-rs/salsa/pull/1073))
15+
1016
## [0.26.0](https://github.com/salsa-rs/salsa/compare/salsa-macros-v0.25.2...salsa-macros-v0.26.0) - 2026-02-02
1117

1218
### Added

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

0 commit comments

Comments
 (0)