summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2020-04-05 19:26:34 +0100
committerNadrieril2020-04-05 19:26:34 +0100
commite05b79108728c328967675284f14c4808477afeb (patch)
treee94edcb23e2818222800ada0910c17c950ce1a05
parenta18582511cf9b9503a96c496ff644868586a01b5 (diff)
Release dhall_proc_macros version 0.5.0
-rw-r--r--Cargo.lock4
-rw-r--r--dhall_proc_macros/Cargo.toml2
-rw-r--r--dhall_proc_macros/src/lib.rs2
-rw-r--r--serde_dhall/Cargo.toml2
4 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 34baded..8a1fd12 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -161,7 +161,7 @@ dependencies = [
[[package]]
name = "dhall_proc_macros"
-version = "0.4.0"
+version = "0.5.0"
dependencies = [
"itertools 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
"proc-macro2 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1040,7 +1040,7 @@ name = "serde_dhall"
version = "0.4.0"
dependencies = [
"dhall 0.5.0",
- "dhall_proc_macros 0.4.0",
+ "dhall_proc_macros 0.5.0",
"doc-comment 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
"reqwest 0.10.4 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/dhall_proc_macros/Cargo.toml b/dhall_proc_macros/Cargo.toml
index 8f6f1f2..d770aa8 100644
--- a/dhall_proc_macros/Cargo.toml
+++ b/dhall_proc_macros/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "dhall_proc_macros"
# remember to update html_root_url
-version = "0.4.0"
+version = "0.5.0"
authors = ["Nadrieril <nadrieril@users.noreply.github.com>"]
license = "BSD-2-Clause"
description = "Macros for dhall"
diff --git a/dhall_proc_macros/src/lib.rs b/dhall_proc_macros/src/lib.rs
index 2178f00..9f20e2d 100644
--- a/dhall_proc_macros/src/lib.rs
+++ b/dhall_proc_macros/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/dhall_proc_macros/0.4.0")]
+#![doc(html_root_url = "https://docs.rs/dhall_proc_macros/0.5.0")]
//! This crate contains the code-generation primitives for the [dhall-rust][dhall-rust] crate.
//! This is highly unstable and breaks regularly; use at your own risk.
//!
diff --git a/serde_dhall/Cargo.toml b/serde_dhall/Cargo.toml
index d894f2e..406e4d9 100644
--- a/serde_dhall/Cargo.toml
+++ b/serde_dhall/Cargo.toml
@@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
dhall = { version = "= 0.5.0", path = "../dhall" }
-dhall_proc_macros = { version = "=0.4.0", path = "../dhall_proc_macros" }
+dhall_proc_macros = { version = "= 0.5.0", path = "../dhall_proc_macros" }
doc-comment = "0.3"
reqwest = { version = "0.10", features = ["blocking"] }
url = "2.1"