From 65e81f495da2352544fe1f1835c076d1823ed674 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Fri, 22 Dec 2023 13:46:33 -0500 Subject: [PATCH] =?UTF-8?q?v0.2.0=20=E2=80=94=20Buffering?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Files opened by the `load()` & `dump()` methods & functions are now wrapped in `std::io::BufReader`/`std::io::BufWriter` - Added `Flush` variant to `DumpError` --- CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9070eff..de8ec04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.2.0 (in development) ------------------------ +v0.2.0 (2023-12-22) +------------------- - Files opened by the `load()` & `dump()` methods & functions are now wrapped in `std::io::BufReader`/`std::io::BufWriter` - Added `Flush` variant to `DumpError` diff --git a/Cargo.toml b/Cargo.toml index e628d89..8f12737 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cfgfifo" -version = "0.2.0-dev" +version = "0.2.0" edition = "2021" rust-version = "1.67" description = "(De)serialize common configuration file formats based on file extension"