Release juniper_codegen 0.15.9

This commit is contained in:
tyranron 2022-02-02 18:28:30 +02:00
parent bb35c66448
commit a0a566bc5b
No known key found for this signature in database
GPG key ID: 762E144FB230A4F0
3 changed files with 4 additions and 4 deletions

View file

@ -32,7 +32,7 @@ scalar-naivetime = []
schema-language = ["graphql-parser-integration"] schema-language = ["graphql-parser-integration"]
[dependencies] [dependencies]
juniper_codegen = { version = "0.15.8", path = "../juniper_codegen" } juniper_codegen = { version = "0.15.9", path = "../juniper_codegen" }
anyhow = { version = "1.0.32", optional = true, default-features = false } anyhow = { version = "1.0.32", optional = true, default-features = false }
async-trait = "0.1.39" async-trait = "0.1.39"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "juniper_codegen" name = "juniper_codegen"
version = "0.15.8" version = "0.15.9"
edition = "2018" edition = "2018"
authors = [ authors = [
"Magnus Hallin <mhallin@fastmail.com>", "Magnus Hallin <mhallin@fastmail.com>",

View file

@ -4,7 +4,7 @@
//! You should not depend on juniper_codegen directly. //! You should not depend on juniper_codegen directly.
//! You only need the `juniper` crate. //! You only need the `juniper` crate.
#![doc(html_root_url = "https://docs.rs/juniper_codegen/0.15.8")] #![doc(html_root_url = "https://docs.rs/juniper_codegen/0.15.9")]
#![recursion_limit = "1024"] #![recursion_limit = "1024"]
mod result; mod result;
@ -495,7 +495,7 @@ pub fn graphql_object(args: TokenStream, input: TokenStream) -> TokenStream {
/// struct UserID(String); /// struct UserID(String);
/// ///
/// #[juniper::graphql_scalar( /// #[juniper::graphql_scalar(
/// // You can rename the type for GraphQL by specifying the name here. /// // You can rename the type for GraphQL by specifying the name here.
/// name = "MyName", /// name = "MyName",
/// // You can also specify a description here. /// // You can also specify a description here.
/// // If present, doc comments will be ignored. /// // If present, doc comments will be ignored.