From 8e691e69e035876bd98195bc78592fe5155eab42 Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Sun, 5 Jan 2025 09:29:15 +0100 Subject: [PATCH] Release 0.12.1 with #338 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 039897f1..68d568cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security +## [0.12.1] - 2025-01-05 + +### Fixed + +- Trim reversed stacks for when function names contain `; `. [#338](https://github.com/jonhoo/inferno/pull/338) + ## [0.12.0] - 2024-11-19 This is a breaking change since we've changed inferno's error type. It diff --git a/Cargo.lock b/Cargo.lock index 845fb01b..893cb51e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -462,7 +462,7 @@ dependencies = [ [[package]] name = "inferno" -version = "0.12.0" +version = "0.12.1" dependencies = [ "ahash", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index cfc09198..1f4c792c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inferno" -version = "0.12.0" +version = "0.12.1" edition = "2021" authors = ["Jon Gjengset "] rust-version = "1.71.0"