From 74a3dd59cbb5cebb8d4996188c11ef8af49cf91f Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Wed, 18 Mar 2020 12:31:56 +0000 Subject: Cut release --- Cargo.lock | 10 +++++----- README.md | 2 +- dhall/Cargo.toml | 2 +- dhall/src/lib.rs | 2 +- dhall_proc_macros/Cargo.toml | 2 +- dhall_proc_macros/src/lib.rs | 2 +- serde_dhall/Cargo.toml | 6 +++--- serde_dhall/src/lib.rs | 2 +- 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 ", "Nadrieril "] 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 "] 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 "] 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. //! -- cgit v1.2.3