From 29fd08377ec0447c2caf80c6c0b93034389deadf Mon Sep 17 00:00:00 2001 From: Robert Mosolgo Date: Mon, 25 Jan 2021 08:38:23 -0500 Subject: [PATCH] 1.12.1 --- CHANGELOG.md | 10 ++++++++++ lib/graphql/version.rb | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ddb651b18c..76381c0267 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ ### Bug fixes +# 1.12.1 (25 January 2021) + +### New features + +- `GraphQL::Deprecation.warn` is used for GraphQL-Ruby 2.0 deprecation warnings (and calls through to `ActiveSupport::Deprecation.warn` if it's available) #3292 + +### Bug fixes + +- `GraphQL::Dataloader`: properly support selections with multiple fields #3297 + # 1.12.0 (20 January 2021) ### Breaking changes diff --git a/lib/graphql/version.rb b/lib/graphql/version.rb index 78d06738c1..9071b0b1db 100644 --- a/lib/graphql/version.rb +++ b/lib/graphql/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module GraphQL - VERSION = "1.12.0" + VERSION = "1.12.1" end