Bump version to 0.1.1

This commit is contained in:
Lukas Kalbertodt
2021-11-03 16:09:13 +01:00
parent a50f78e938
commit cc1681bf53
3 changed files with 12 additions and 3 deletions

View File

@@ -5,9 +5,18 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [0.1.1] - 2021-11-03
### Added
- `deserialize_with` attribute which is (basically) forwarded to `serde`
### Fixed
- Improve some spans in error messages
## 0.1.0 - 2021-07-28
### Added
- Everything.
[Unreleased]: https://github.com/LukasKalbertodt/confique/compare/v0.1.0...HEAD
[0.1.1]: https://github.com/LukasKalbertodt/confique/compare/v0.1.0...v0.1.1

View File

@@ -1,6 +1,6 @@
[package]
name = "confique"
version = "0.1.0"
version = "0.1.1"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"
@@ -26,7 +26,7 @@ yaml = ["serde_yaml"]
[dependencies]
confique-macro = { version = "=0.0.1", path = "macro" }
confique-macro = { version = "=0.0.2", path = "macro" }
serde = { version = "1", features = ["derive"] }
serde_yaml = { version = "0.8", optional = true }
toml = { version = "0.5", optional = true }

View File

@@ -1,6 +1,6 @@
[package]
name = "confique-macro"
version = "0.0.1"
version = "0.0.2"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"