summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNadrieril2020-03-18 12:31:56 +0000
committerNadrieril2020-03-18 12:31:56 +0000
commit74a3dd59cbb5cebb8d4996188c11ef8af49cf91f (patch)
tree2152dcc41b94b0bfdcddda79b5cf07c7a908bedb
parent8a9b1d75291d826e4235eb4e466e4fd70137dc90 (diff)
Cut release
-rw-r--r--Cargo.lock10
-rw-r--r--README.md2
-rw-r--r--dhall/Cargo.toml2
-rw-r--r--dhall/src/lib.rs2
-rw-r--r--dhall_proc_macros/Cargo.toml2
-rw-r--r--dhall_proc_macros/src/lib.rs2
-rw-r--r--serde_dhall/Cargo.toml6
-rw-r--r--serde_dhall/src/lib.rs2
8 files changed, 14 insertions, 14 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 7a3c91d..0216606 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -128,7 +128,7 @@ dependencies = [
[[package]]
name = "dhall"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
"abnf_to_pest 0.2.0",
"annotate-snippets 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -152,7 +152,7 @@ dependencies = [
[[package]]
name = "dhall_proc_macros"
-version = "0.1.0"
+version = "0.4.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)",
@@ -960,10 +960,10 @@ dependencies = [
[[package]]
name = "serde_dhall"
-version = "0.3.0"
+version = "0.4.0"
dependencies = [
- "dhall 0.3.0",
- "dhall_proc_macros 0.1.0",
+ "dhall 0.4.0",
+ "dhall_proc_macros 0.4.0",
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
]
diff --git a/README.md b/README.md
index 428533e..551aeb1 100644
--- a/README.md
+++ b/README.md
@@ -157,7 +157,7 @@ same name as the corresponding test.
## Changelog
-[???]
+[0.4.0]
- `dhall` now uses the stable Rust toolchain !
- Implement record puns
diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml
index 0d1c569..bd91a1a 100644
--- a/dhall/Cargo.toml
+++ b/dhall/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dhall"
-version = "0.3.0" # remember to update html_root_url
+version = "0.4.0" # 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 058411c..c0830d4 100644
--- a/dhall/src/lib.rs
+++ b/dhall/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/dhall/0.3.0")]
+#![doc(html_root_url = "https://docs.rs/dhall/0.4.0")]
#![allow(
clippy::int_plus_one, // Comes from pest_consume macro
clippy::module_inception,
diff --git a/dhall_proc_macros/Cargo.toml b/dhall_proc_macros/Cargo.toml
index 6d8ac63..6de2850 100644
--- a/dhall_proc_macros/Cargo.toml
+++ b/dhall_proc_macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dhall_proc_macros"
-version = "0.1.0" # remember to update html_root_url
+version = "0.4.0" # remember to update html_root_url
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 ce2dcdb..ae6f64c 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.1.0")]
+#![doc(html_root_url = "https://docs.rs/dhall_proc_macros/0.4.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 7066dce..b0030e9 100644
--- a/serde_dhall/Cargo.toml
+++ b/serde_dhall/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "serde_dhall"
-version = "0.3.0" # remember to update html_root_url, README and changelog
+version = "0.4.0" # remember to update html_root_url, README and changelog
authors = ["Nadrieril <nadrieril@users.noreply.github.com>"]
license = "BSD-2-Clause"
description = "Dhall support for serde"
@@ -11,5 +11,5 @@ edition = "2018"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
-dhall = { version = "0.3.0", path = "../dhall" }
-dhall_proc_macros = { version = "0.1.0", path = "../dhall_proc_macros" }
+dhall = { version = "0.4.0", path = "../dhall" }
+dhall_proc_macros = { version = "0.4.0", path = "../dhall_proc_macros" }
diff --git a/serde_dhall/src/lib.rs b/serde_dhall/src/lib.rs
index 73b36cd..0a53420 100644
--- a/serde_dhall/src/lib.rs
+++ b/serde_dhall/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/serde_dhall/0.3.0")]
+#![doc(html_root_url = "https://docs.rs/serde_dhall/0.4.0")]
//! [Dhall][dhall] is a programmable configuration language that provides a non-repetitive
//! alternative to JSON and YAML.
//!