Unnamed repository; edit this file 'description' to name the repository.
Release a new smol-str minor version with borsh fix
Chayim Refael Friedman 7 weeks ago
parent 3c4ae11 · commit 6f4aea1
-rw-r--r--Cargo.lock2
-rw-r--r--lib/smol_str/CHANGELOG.md3
-rw-r--r--lib/smol_str/Cargo.toml2
3 files changed, 5 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 9db4dd7cb1..f31dda4a10 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2635,7 +2635,7 @@ dependencies = [
[[package]]
name = "smol_str"
-version = "0.3.5"
+version = "0.3.6"
dependencies = [
"arbitrary",
"borsh",
diff --git a/lib/smol_str/CHANGELOG.md b/lib/smol_str/CHANGELOG.md
index 4aa25fa134..6327275d07 100644
--- a/lib/smol_str/CHANGELOG.md
+++ b/lib/smol_str/CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog
+## 0.3.6 - 2026-03-04
+- Fix the `borsh` feature.
+
## 0.3.5 - 2026-01-08
- Optimise `SmolStr::clone` 4-5x speedup inline, 0.5x heap (slow down).
diff --git a/lib/smol_str/Cargo.toml b/lib/smol_str/Cargo.toml
index 4e7844b49e..22068fe841 100644
--- a/lib/smol_str/Cargo.toml
+++ b/lib/smol_str/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "smol_str"
-version = "0.3.5"
+version = "0.3.6"
description = "small-string optimized string type with O(1) clone"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/rust-analyzer/tree/master/lib/smol_str"