Skip to content

Commit a0a566b

Browse files
committed
Release juniper_codegen 0.15.9
1 parent bb35c66 commit a0a566b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

juniper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ scalar-naivetime = []
3232
schema-language = ["graphql-parser-integration"]
3333

3434
[dependencies]
35-
juniper_codegen = { version = "0.15.8", path = "../juniper_codegen" }
35+
juniper_codegen = { version = "0.15.9", path = "../juniper_codegen" }
3636

3737
anyhow = { version = "1.0.32", optional = true, default-features = false }
3838
async-trait = "0.1.39"

juniper_codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "juniper_codegen"
3-
version = "0.15.8"
3+
version = "0.15.9"
44
edition = "2018"
55
authors = [
66
"Magnus Hallin <mhallin@fastmail.com>",

juniper_codegen/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//! You should not depend on juniper_codegen directly.
55
//! You only need the `juniper` crate.
66
7-
#![doc(html_root_url = "https://docs.rs/juniper_codegen/0.15.8")]
7+
#![doc(html_root_url = "https://docs.rs/juniper_codegen/0.15.9")]
88
#![recursion_limit = "1024"]
99

1010
mod result;
@@ -495,7 +495,7 @@ pub fn graphql_object(args: TokenStream, input: TokenStream) -> TokenStream {
495495
/// struct UserID(String);
496496
///
497497
/// #[juniper::graphql_scalar(
498-
/// // You can rename the type for GraphQL by specifying the name here.
498+
/// // You can rename the type for GraphQL by specifying the name here.
499499
/// name = "MyName",
500500
/// // You can also specify a description here.
501501
/// // If present, doc comments will be ignored.

0 commit comments

Comments
 (0)