diff --git a/CHANGELOG.md b/CHANGELOG.md index a185a5109c..814db6a493 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ ### Bug fixes +# 1.11.9 + +### New Features + +- `Schema.max_validation_errors(val)` limits the number of errors that can be added during static validation #3675 + # 1.11.8 (12 Feb 2021) ### Bug fixes diff --git a/lib/graphql/version.rb b/lib/graphql/version.rb index 066fa95ff9..e31ff4a9f5 100644 --- a/lib/graphql/version.rb +++ b/lib/graphql/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module GraphQL - VERSION = "1.11.8" + VERSION = "1.11.9" end