diff --git a/Cargo.lock b/Cargo.lock index bafb551..6eb6790 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -159,7 +159,7 @@ dependencies = [ [[package]] name = "toml-span" -version = "0.4.0" +version = "0.4.1" dependencies = [ "codespan-reporting", "serde", diff --git a/toml-span/CHANGELOG.md b/toml-span/CHANGELOG.md index b3a87af..3b9730d 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.4.1] - 2024-12-19 ### Added - [PR#11](https://github.com/EmbarkStudios/toml-span/pull/11) resolved [#10](https://github.com/EmbarkStudios/toml-span/issues/10) by adding span information for tables. @@ -44,7 +45,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.4.0...HEAD +[Unreleased]: https://github.com/EmbarkStudios/toml-span/compare/0.4.1...HEAD +[0.4.1]: https://github.com/EmbarkStudios/toml-span/compare/0.4.0...0.4.1 [0.4.0]: https://github.com/EmbarkStudios/toml-span/compare/0.3.0...0.4.0 [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 diff --git a/toml-span/Cargo.toml b/toml-span/Cargo.toml index 8aaf414..59ca589 100644 --- a/toml-span/Cargo.toml +++ b/toml-span/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toml-span" -version = "0.4.0" +version = "0.4.1" description = "Toml parser and deserializer that preserves span information" license.workspace = true edition.workspace = true