diff --git a/Cargo.lock b/Cargo.lock index b2c4097..08e8e0c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -160,7 +160,7 @@ dependencies = [ [[package]] name = "toml-span" -version = "0.1.0" +version = "0.2.0" dependencies = [ "codespan-reporting", "serde", diff --git a/toml-span/CHANGELOG.md b/toml-span/CHANGELOG.md index f2a1e34..5eab6a1 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.2.0] - 2024-02-22 ### Added - [PR#3](https://github.com/EmbarkStudios/toml-span/pull/3) actually added some documentation. - [PR#3](https://github.com/EmbarkStudios/toml-span/pull/3) added `DeserError::merge` @@ -24,5 +25,6 @@ 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.1.0...HEAD +[Unreleased]: https://github.com/EmbarkStudios/toml-span/compare/0.2.0...HEAD +[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 b89ccf5..65b9d6a 100644 --- a/toml-span/Cargo.toml +++ b/toml-span/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml-span" -version = "0.1.0" +version = "0.2.0" description = "Toml parser and deserializer that preserves span information" license.workspace = true edition.workspace = true