From f206445808167fa370c224bb70689fa89e918024 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Wed, 26 Jun 2024 23:32:26 +0200 Subject: [PATCH] chore: Release --- Cargo.lock | 2 +- toml-span/CHANGELOG.md | 4 +++- toml-span/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 02e09e8..048b621 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -159,7 +159,7 @@ dependencies = [ [[package]] name = "toml-span" -version = "0.2.1" +version = "0.3.0" dependencies = [ "codespan-reporting", "serde", diff --git a/toml-span/CHANGELOG.md b/toml-span/CHANGELOG.md index d17159d..bfa75ea 100644 --- a/toml-span/CHANGELOG.md +++ b/toml-span/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.3.0] - 2024-06-26 ### Changed - [PR#7](https://github.com/EmbarkStudios/toml-span/pull/7) implemented `Borrow` for `Key`, making the API much more ergonomic. @@ -36,7 +37,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial implementation -[Unreleased]: https://github.com/EmbarkStudios/toml-span/compare/0.2.1...HEAD +[Unreleased]: https://github.com/EmbarkStudios/toml-span/compare/0.3.0...HEAD +[0.3.0]: https://github.com/EmbarkStudios/toml-span/compare/0.2.1...0.3.0 [0.2.1]: https://github.com/EmbarkStudios/toml-span/compare/0.2.0...0.2.1 [0.2.0]: https://github.com/EmbarkStudios/toml-span/compare/0.1.0...0.2.0 [0.1.0]: https://github.com/EmbarkStudios/toml-span/releases/tag/0.1.0 diff --git a/toml-span/Cargo.toml b/toml-span/Cargo.toml index b266512..25f8001 100644 --- a/toml-span/Cargo.toml +++ b/toml-span/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml-span" -version = "0.2.1" +version = "0.3.0" description = "Toml parser and deserializer that preserves span information" license.workspace = true edition.workspace = true