From b22be966968423e352fa2a552ef19900f5c70ee0 Mon Sep 17 00:00:00 2001 From: Dominik Spicher Date: Sat, 7 Jan 2023 11:22:50 +0100 Subject: [PATCH] ur: prepare release 0.3.0 --- CHANGELOG.md | 14 +++++++++----- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2319eb1..d0f9584 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased - - Added `ur::ur::decode` to the public API to decode a single `ur` URI. - - Added `ur::ur::encode` and `ur::ur::decode` to the root library path. - - Bumped the Rust edition to 2021. #113 - - Added an enum indicating whether the UR was single- or multip-part to `ur::ur::decode` https://github.com/dspicher/ur-rs/pull/121 + +## [0.3.0] - 2023-01-07 + - Added `ur::ur::decode` to the public API to decode a single `ur` URI. https://github.com/dspicher/ur-rs/pull/112 + - Added `ur::ur::encode` and `ur::ur::decode` to the root library path. https://github.com/dspicher/ur-rs/pull/112 + - Bumped the Rust edition to 2021. https://github.com/dspicher/ur-rs/pull/113 + - Added an enum indicating whether the UR was single- or multip-part to `ur::ur::decode`. https://github.com/dspicher/ur-rs/pull/121 + - Migrated from `anyhow` errors to a custom error enum. https://github.com/dspicher/ur-rs/pull/159 + - Remove `std::fmt::Display` implementation of `Part`. https://github.com/dspicher/ur-rs/pull/160 ## [0.2.0] - 2021-12-08 - The public API has been greatly restricted @@ -16,4 +20,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Introduced fuzz testing ## [0.1.0] - 2021-08-23 - - Initial release \ No newline at end of file + - Initial release diff --git a/Cargo.toml b/Cargo.toml index 526aa37..3560353 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = ["fuzz"] name = "ur" description = "A Rust implementation of Uniform Resources" license = "MIT" -version = "0.2.0" +version = "0.3.0" authors = ["Dominik Spicher "] edition = "2021" repository = "https://github.com/dspicher/ur-rs/"