Skip to content

Commit

Permalink
release: serde_dhall version 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadrieril committed Jan 1, 2022
1 parent c5edd4d commit 190ef2e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#### [Unreleased]

#### [0.11.0] - 2022-01-01

- Fix reading file with a path relative to HOME (https://github.com/Nadrieril/dhall-rust/pull/224)
- Change `?` to only fall back on absent imports
- Add support for custom builtin types (https://github.com/Nadrieril/dhall-rust/pull/220)
Expand Down Expand Up @@ -119,7 +121,8 @@
- Initial release

<!-- next-url -->
[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.10.1...HEAD
[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.11.0...HEAD
[0.11.0]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.10.1...serde_dhall-v0.11.0
[0.10.1]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.10.0...serde_dhall-v0.10.1
[0.10.0]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.9.0...serde_dhall-v0.10.0
[0.9.0]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.8.0...serde_dhall-v0.9.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
serde_dhall = "0.10.1"
serde_dhall = "0.11.0"
```

Reading Dhall files is easy and leverages the wonderful [`serde`](https://crates.io/crates/serde) library.
Expand Down
2 changes: 1 addition & 1 deletion serde_dhall/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "serde_dhall"
# remember to update html_root_url, README and changelog
version = "0.10.1"
version = "0.11.0"
authors = ["Nadrieril <nadrieril@users.noreply.github.com>"]
license = "BSD-2-Clause"
description = "Dhall support for serde"
Expand Down
2 changes: 1 addition & 1 deletion serde_dhall/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/serde_dhall/0.10.1")]
#![doc(html_root_url = "https://docs.rs/serde_dhall/0.11.0")]
#![warn(missing_docs, missing_doc_code_examples)]
//! [Dhall][dhall] is a programmable configuration language that provides a non-repetitive
//! alternative to JSON and YAML.
Expand Down

0 comments on commit 190ef2e

Please sign in to comment.