diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b10594e00..1b151e1e31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ ### Bug fixes +## 1.11.1 (17 June 2020) + +### New Features + +- Add `StatsdTracing` #2996 + +### Bug Fixes + +- Raise the proper `InvalidNullError` when a mutation field returns an invalid `nil` #2997 + ## 1.11.0 (13 June 2020) ### Breaking changes diff --git a/lib/graphql/version.rb b/lib/graphql/version.rb index a8fb611cc4..15e4212ecf 100644 --- a/lib/graphql/version.rb +++ b/lib/graphql/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module GraphQL - VERSION = "1.11.0" + VERSION = "1.11.1" end