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