diff --git a/CHANGELOG.md b/CHANGELOG.md index e03d91f45e..d940084dbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,13 @@ ### Bug fixes +# 2.2.1 (20 Dec 2023) + +### Bug fixes + +- `AsyncDataloader`: re-raise errors from fields and sources #4736 +- Parser: fix parsing directives on interfaces in SDL #4738 + # 2.2.0 (18 Dec 2023) ### Breaking changes diff --git a/lib/graphql/version.rb b/lib/graphql/version.rb index 1c7f347afb..12c91c7ab6 100644 --- a/lib/graphql/version.rb +++ b/lib/graphql/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module GraphQL - VERSION = "2.2.0" + VERSION = "2.2.1" end