diff --git a/CHANGELOG.md b/CHANGELOG.md index 2115c8c35a..6fca5e734c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,13 @@ ### Bug fixes +# 2.2.5 (10 Jan 2024) + +### Bug fixes + +- Parser: fix enum values named `type` #4772 +- GraphQL::Deprecation: remove this unused helper module #4769 + # 2.2.4 (3 Jan 2024) ### Bug fixes diff --git a/lib/graphql/version.rb b/lib/graphql/version.rb index 0a40ed24fb..6b6ef0d296 100644 --- a/lib/graphql/version.rb +++ b/lib/graphql/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module GraphQL - VERSION = "2.2.4" + VERSION = "2.2.5" end