From 63c9c3333978c4951ff6239134aca19f41d50494 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Sun, 10 Mar 2024 22:30:53 +0100 Subject: [PATCH] Publish v0.2.5 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f433f3..5ff930a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.2.5 + +Add `push_to_string` for serializing a struct to the end of an existing `String` +buffer (instead of allocating a fresh one for the serialized output). + # 0.2.4 Fix deserialization of optional sequences of a single element. diff --git a/Cargo.toml b/Cargo.toml index d0255d1..4d96d30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_html_form" -version = "0.2.4" +version = "0.2.5" license = "MIT" repository = "https://github.com/jplatte/serde_html_form" description = "(De-)serialization support for the `application/x-www-form-urlencoded` format"