diff --git a/CHANGELOG.md b/CHANGELOG.md index cd17fe7d1..146240ca5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.26.3](https://github.com/salsa-rs/salsa/compare/salsa-v0.26.2...salsa-v0.26.3) - 2026-06-02 + +### Other + +- Refresh trybuild snapshots for Rust 1.96 ([#1102](https://github.com/salsa-rs/salsa/pull/1102)) +- Remove outdated RELEASES.md file; exclude a few more files from published crates ([#1091](https://github.com/salsa-rs/salsa/pull/1091)) +- Skip memory usage tests on 32-bit (non-64-bit) targets ([#1094](https://github.com/salsa-rs/salsa/pull/1094)) +- Convert CRLF-terminated sources to LF-terminated ([#1092](https://github.com/salsa-rs/salsa/pull/1092)) + ## [0.26.2](https://github.com/salsa-rs/salsa/compare/salsa-v0.26.1...salsa-v0.26.2) - 2026-05-03 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index d6b0147e1..4771e920d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "salsa" -version = "0.26.2" +version = "0.26.3" authors.workspace = true edition.workspace = true license.workspace = true @@ -18,8 +18,8 @@ exclude = [ ] [dependencies] -salsa-macro-rules = { version = "0.26.2", path = "components/salsa-macro-rules" } -salsa-macros = { version = "0.26.2", path = "components/salsa-macros", optional = true } +salsa-macro-rules = { version = "0.26.3", path = "components/salsa-macro-rules" } +salsa-macros = { version = "0.26.3", path = "components/salsa-macros", optional = true } boxcar = "0.2.14" crossbeam-queue = "0.3.12" @@ -74,7 +74,7 @@ salsa_unstable = [] # which may ultimately result in odd issues due to the proc-macro # output mismatching with the declarative macro inputs [target.'cfg(any())'.dependencies] -salsa-macros = { version = "=0.26.2", path = "components/salsa-macros" } +salsa-macros = { version = "=0.26.3", path = "components/salsa-macros" } [dev-dependencies] # examples diff --git a/components/salsa-macro-rules/Cargo.toml b/components/salsa-macro-rules/Cargo.toml index e9eeaa4a2..3116db4a3 100644 --- a/components/salsa-macro-rules/Cargo.toml +++ b/components/salsa-macro-rules/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "salsa-macro-rules" -version = "0.26.2" +version = "0.26.3" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/components/salsa-macros/Cargo.toml b/components/salsa-macros/Cargo.toml index 422efee86..9eb64d7cf 100644 --- a/components/salsa-macros/Cargo.toml +++ b/components/salsa-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "salsa-macros" -version = "0.26.2" +version = "0.26.3" authors.workspace = true edition.workspace = true license.workspace = true