diff options
author | Nadrieril | 2020-04-05 19:26:34 +0100 |
---|---|---|
committer | Nadrieril | 2020-04-05 19:26:34 +0100 |
commit | 5aea256e3998e6f72dc79b3ea4b935647ecf5cd6 (patch) | |
tree | 143a2f79e16d0ee9422690e1efd5270e0969075c | |
parent | e05b79108728c328967675284f14c4808477afeb (diff) |
Release serde_dhall version 0.5.0
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | serde_dhall/Cargo.toml | 2 |
3 files changed, 8 insertions, 5 deletions
@@ -1037,7 +1037,7 @@ dependencies = [ [[package]] name = "serde_dhall" -version = "0.4.0" +version = "0.5.0" dependencies = [ "dhall 0.5.0", "dhall_proc_macros 0.5.0", @@ -46,7 +46,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -serde_dhall = "0.4.0" +serde_dhall = "0.5.0" ``` Reading Dhall files is easy and leverages the wonderful [`serde`](https://crates.io/crates/serde) library. @@ -167,7 +167,9 @@ same name as the corresponding test. ## Changelog -#### [Unreleased] +#### \[Unreleased\] + +#### [0.5.0] - 2020-04-05 - Add `serde_dhall::from_file` to read a Dhall file directly. - BREAKING CHANGE: reworked most of the `serde_dhall` API @@ -208,7 +210,8 @@ same name as the corresponding test. - Initial release <!-- next-url --> -[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.4.0...HEAD +[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.5.0...HEAD +[0.5.0]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.4.0...serde_dhall-v0.5.0 ## License diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml index 406e4d9..d6e8d9f 100644 --- a/serde_dhall/Cargo.toml +++ b/serde_dhall/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "serde_dhall" # remember to update html_root_url, README and changelog -version = "0.4.0" +version = "0.5.0" authors = ["Nadrieril <nadrieril@users.noreply.github.com>"] license = "BSD-2-Clause" description = "Dhall support for serde" |