From 2f5e3ab29b47ace511efd51c20a33671c01f5223 Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Wed, 19 Dec 2018 02:08:49 +0100 Subject: [PATCH] 0.11.1 Release * Changelog * Cargo.toml version bumps --- juniper/CHANGELOG.md | 12 +++++++++++- juniper/Cargo.toml | 4 ++-- juniper_codegen/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/juniper/CHANGELOG.md b/juniper/CHANGELOG.md index 059bf856..eb54c49f 100644 --- a/juniper/CHANGELOG.md +++ b/juniper/CHANGELOG.md @@ -2,11 +2,21 @@ - The minimum required Rust version is now `1.30.0`. +# [0.11.1] 2018-12-19 + +## Changes + +- The minimum required Rust version is now `1.30`. +- All macros and the custom derives now support the macro system changes properly + and also support Rust 2018 edition crates. + + [#298](https://github.com/graphql-rust/juniper/pull/298) + # [0.11.0] 2018-12-17 ## Changes -- The minimum required Rust version is now `1.28.0`. +- The minimum required Rust version is now `1.30.0`. [#271](https://github.com/graphql-rust/juniper/pull/271) diff --git a/juniper/Cargo.toml b/juniper/Cargo.toml index 442335a9..fec42203 100644 --- a/juniper/Cargo.toml +++ b/juniper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "juniper" -version = "0.11.0" +version = "0.11.1" authors = [ "Magnus Hallin ", "Christoph Herzog ", @@ -31,7 +31,7 @@ default = [ ] [dependencies] -juniper_codegen = { version = "0.11.0", path = "../juniper_codegen" } +juniper_codegen = { version = "0.11.1", path = "../juniper_codegen" } fnv = "1.0.3" indexmap = { version = "1.0.0", features = ["serde-1"] } diff --git a/juniper_codegen/Cargo.toml b/juniper_codegen/Cargo.toml index b2503b87..39f9cc51 100644 --- a/juniper_codegen/Cargo.toml +++ b/juniper_codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "juniper_codegen" -version = "0.11.0" +version = "0.11.1" authors = [ "Magnus Hallin ", "Christoph Herzog ",