From 92bc4f46d3eaf9857c6593955bf324b99bced9b6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jul 2024 19:43:06 +0200 Subject: [PATCH] chore: release (#3) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b64a56..dbf6e8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.1](https://github.com/bearcove/merde_json/compare/v1.0.0...v1.0.1) - 2024-07-29 + +### Fixed +- Declare lifetime parameters in a consistent order, always ([#4](https://github.com/bearcove/merde_json/pull/4)) + +### Other +- release + ## [1.0.0](https://github.com/bearcove/merde_json/releases/tag/v1.0.0) - 2024-07-29 ### Other diff --git a/Cargo.lock b/Cargo.lock index 55154e5..cafe4ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,7 +120,7 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "merde_json" -version = "1.0.0" +version = "1.0.1" dependencies = [ "jiter", "serde", diff --git a/Cargo.toml b/Cargo.toml index aa8fbd1..e9d90a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "merde_json" -version = "1.0.0" +version = "1.0.1" edition = "2021" authors = ["Amos Wenger "] description = "Serialize and deserialize JSON with jiter and declarative macros"