From 8deab7664bb092c465fdaa9fb561cb43c556fd0a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jul 2024 14:42:08 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbf6e8a..3de0cf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0](https://github.com/bearcove/merde_json/compare/v1.0.1...v2.0.0) - 2024-07-31 + +### Added +- Introduce `to_string` and other top-level functions for serde_json compat +- Implement ToStatic for Option + +### Other +- I guess that bound wasn't necessary +- Elide lifetimes +- Tests pass! Let's only do OffsetDateTime +- Some unit tests for datetime (failing so far) +- Make both enums non-exhaustive +- WIP time implementation +- Also run on merge_group + ## [1.0.1](https://github.com/bearcove/merde_json/compare/v1.0.0...v1.0.1) - 2024-07-29 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 47eee8b..6e74fbf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -129,7 +129,7 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "merde_json" -version = "1.0.1" +version = "2.0.0" dependencies = [ "jiter", "serde", diff --git a/Cargo.toml b/Cargo.toml index 2e43094..8807d95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "merde_json" -version = "1.0.1" +version = "2.0.0" edition = "2021" authors = ["Amos Wenger "] description = "Serialize and deserialize JSON with jiter and declarative macros"