summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dhall/Cargo.toml2
-rw-r--r--dhall/src/lib.rs2
-rw-r--r--serde_dhall/Cargo.toml2
3 files changed, 3 insertions, 3 deletions
diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml
index a9c237c..34cf444 100644
--- a/dhall/Cargo.toml
+++ b/dhall/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dhall"
-version = "0.1.0" # remember to update html_root_url
+version = "0.1.1" # remember to update html_root_url
authors = ["NanoTech <nanotech@nanotechcorp.net>", "Nadrieril <nadrieril@users.noreply.github.com>"]
license = "BSD-2-Clause"
description = "Implementation of the Dhall configuration language"
diff --git a/dhall/src/lib.rs b/dhall/src/lib.rs
index 54111dd..dfa06e7 100644
--- a/dhall/src/lib.rs
+++ b/dhall/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/dhall/0.1.0")]
+#![doc(html_root_url = "https://docs.rs/dhall/0.1.1")]
#![feature(trace_macros)]
#![feature(slice_patterns)]
#![feature(never_type)]
diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml
index 8c75f68..0dd0cd5 100644
--- a/serde_dhall/Cargo.toml
+++ b/serde_dhall/Cargo.toml
@@ -11,5 +11,5 @@ edition = "2018"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
-dhall = { version = "0.1.0", path = "../dhall" }
+dhall = { version = "0.1.1", path = "../dhall" }
dhall_proc_macros = { version = "0.1.0", path = "../dhall_proc_macros" }