From 5bd495678a9f41a0ec1dc0cd8e582a90fa053403 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 15:22:05 +0000 Subject: [PATCH] chore: release v2.0.0 --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81ddd4d..df99208 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0](https://github.com/napi-rs/json-escape-simd/compare/json-escape-simd-v1.1.0...json-escape-simd-v2.0.0) - 2025-10-13 + +### Fixed + +- tests on avx512 host ([#35](https://github.com/napi-rs/json-escape-simd/pull/35)) + +### Other + +- run miri on more platform ([#34](https://github.com/napi-rs/json-escape-simd/pull/34)) +- cleanup codes ([#33](https://github.com/napi-rs/json-escape-simd/pull/33)) +- split impls into arch ([#32](https://github.com/napi-rs/json-escape-simd/pull/32)) +- runtime detect simd features ([#29](https://github.com/napi-rs/json-escape-simd/pull/29)) +- remove useless deps ([#28](https://github.com/napi-rs/json-escape-simd/pull/28)) +- update benchmark result +- borrow the sonic-rs string escape implementation ([#27](https://github.com/napi-rs/json-escape-simd/pull/27)) +- *(deps)* update rust crate json-escape to 0.3.0 ([#24](https://github.com/napi-rs/json-escape-simd/pull/24)) +- *(deps)* update rust crate json-escape to 0.2.0 ([#23](https://github.com/napi-rs/json-escape-simd/pull/23)) +- omit other crates in codspeed ([#22](https://github.com/napi-rs/json-escape-simd/pull/22)) +- add benchmark ([#20](https://github.com/napi-rs/json-escape-simd/pull/20)) + ## [1.1.0](https://github.com/napi-rs/json-escape-simd/compare/json-escape-simd-v1.0.4...json-escape-simd-v1.1.0) - 2025-09-23 ### Added diff --git a/Cargo.lock b/Cargo.lock index 6c22aed..a71e8fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -313,7 +313,7 @@ dependencies = [ [[package]] name = "json-escape-simd" -version = "1.1.0" +version = "2.0.0" dependencies = [ "criterion2", "glob", diff --git a/Cargo.toml b/Cargo.toml index 1fc0439..4c82f76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["cpu-features"] [package] name = "json-escape-simd" -version = "1.1.0" +version = "2.0.0" edition = "2024" rust-version = "1.89.0" include = ["src/**/*.rs"]