Skip to content

Commit e7da373

Browse files
committed
Bump patch version and update README
1 parent 7d77e98 commit e7da373

File tree

4 files changed

+75
-71
lines changed

4 files changed

+75
-71
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ with GraphQL.js.
1818
The current stable version 3.2.6 of GraphQL-core is up-to-date with GraphQL.js
1919
version 16.8.2 and supports Python versions 3.6 to 3.13.
2020

21-
You can also try out the latest alpha version 3.3.0a7 of GraphQL-core,
21+
You can also try out the latest alpha version 3.3.0a8 of GraphQL-core,
2222
which is up-to-date with GraphQL.js version 17.0.0a3.
2323
Please note that this new minor version of GraphQL-core does not support
2424
Python 3.6 anymore.

docs/conf.py

Lines changed: 72 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
# version = '3.3'
6262
# The full version, including alpha/beta/rc tags.
63-
version = release = "3.3.0a7"
63+
version = release = "3.3.0a8"
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.
@@ -139,73 +139,77 @@
139139

140140
# ignore the following undocumented or internal references:
141141
ignore_references = set(
142-
"""
143-
GNT GT KT T VT
144-
TContext
145-
Enum
146-
traceback
147-
types.TracebackType
148-
TypeMap
149-
AwaitableOrValue
150-
DeferredFragmentRecord
151-
DeferUsage
152-
EnterLeaveVisitor
153-
ExperimentalIncrementalExecutionResults
154-
FieldGroup
155-
FormattedIncrementalResult
156-
FormattedPendingResult
157-
FormattedSourceLocation
158-
GraphQLAbstractType
159-
GraphQLCompositeType
160-
GraphQLEnumValueMap
161-
GraphQLErrorExtensions
162-
GraphQLFieldResolver
163-
GraphQLInputType
164-
GraphQLNullableType
165-
GraphQLOutputType
166-
GraphQLTypeResolver
167-
GroupedFieldSet
168-
IncrementalDataRecord
169-
IncrementalResult
170-
InitialResultRecord
171-
Middleware
172-
PendingResult
173-
StreamItemsRecord
174-
StreamRecord
175-
SubsequentDataRecord
176-
asyncio.events.AbstractEventLoop
177-
collections.abc.MutableMapping
178-
collections.abc.MutableSet
179-
enum.Enum
180-
graphql.execution.collect_fields.DeferUsage
181-
graphql.execution.collect_fields.CollectFieldsResult
182-
graphql.execution.collect_fields.FieldGroup
183-
graphql.execution.execute.StreamArguments
184-
graphql.execution.execute.StreamUsage
185-
graphql.execution.map_async_iterable.map_async_iterable
186-
graphql.execution.incremental_publisher.CompletedResult
187-
graphql.execution.incremental_publisher.DeferredFragmentRecord
188-
graphql.execution.incremental_publisher.DeferredGroupedFieldSetRecord
189-
graphql.execution.incremental_publisher.FormattedCompletedResult
190-
graphql.execution.incremental_publisher.FormattedPendingResult
191-
graphql.execution.incremental_publisher.IncrementalPublisher
192-
graphql.execution.incremental_publisher.InitialResultRecord
193-
graphql.execution.incremental_publisher.PendingResult
194-
graphql.execution.incremental_publisher.StreamItemsRecord
195-
graphql.execution.incremental_publisher.StreamRecord
196-
graphql.execution.Middleware
197-
graphql.language.lexer.EscapeSequence
198-
graphql.language.visitor.EnterLeaveVisitor
199-
graphql.pyutils.ref_map.K
200-
graphql.pyutils.ref_map.V
201-
graphql.type.definition.GT_co
202-
graphql.type.definition.GNT_co
203-
graphql.type.definition.TContext
204-
graphql.type.schema.InterfaceImplementations
205-
graphql.validation.validation_context.VariableUsage
206-
graphql.validation.rules.known_argument_names.KnownArgumentNamesOnDirectivesRule
207-
graphql.validation.rules.provided_required_arguments.ProvidedRequiredArgumentsOnDirectivesRule
208-
""".split()
142+
[
143+
"GNT",
144+
"GT",
145+
"KT",
146+
"T",
147+
"VT",
148+
"TContext",
149+
"Enum",
150+
"traceback",
151+
"types.TracebackType",
152+
"TypeMap",
153+
"AwaitableOrValue",
154+
"DeferredFragmentRecord",
155+
"DeferUsage",
156+
"EnterLeaveVisitor",
157+
"ExperimentalIncrementalExecutionResults",
158+
"FieldGroup",
159+
"FormattedIncrementalResult",
160+
"FormattedPendingResult",
161+
"FormattedSourceLocation",
162+
"GraphQLAbstractType",
163+
"GraphQLCompositeType",
164+
"GraphQLEnumValueMap",
165+
"GraphQLErrorExtensions",
166+
"GraphQLFieldResolver",
167+
"GraphQLInputType",
168+
"GraphQLNullableType",
169+
"GraphQLOutputType",
170+
"GraphQLTypeResolver",
171+
"GroupedFieldSet",
172+
"IncrementalDataRecord",
173+
"IncrementalResult",
174+
"InitialResultRecord",
175+
"Middleware",
176+
"PendingResult",
177+
"StreamItemsRecord",
178+
"StreamRecord",
179+
"SubsequentDataRecord",
180+
"asyncio.events.AbstractEventLoop",
181+
"collections.abc.MutableMapping",
182+
"collections.abc.MutableSet",
183+
"enum.Enum",
184+
"graphql.execution.collect_fields.DeferUsage",
185+
"graphql.execution.collect_fields.CollectFieldsResult",
186+
"graphql.execution.collect_fields.FieldGroup",
187+
"graphql.execution.execute.StreamArguments",
188+
"graphql.execution.execute.StreamUsage",
189+
"graphql.execution.map_async_iterable.map_async_iterable",
190+
"graphql.execution.incremental_publisher.CompletedResult",
191+
"graphql.execution.incremental_publisher.DeferredFragmentRecord",
192+
"graphql.execution.incremental_publisher.DeferredGroupedFieldSetRecord",
193+
"graphql.execution.incremental_publisher.FormattedCompletedResult",
194+
"graphql.execution.incremental_publisher.FormattedPendingResult",
195+
"graphql.execution.incremental_publisher.IncrementalPublisher",
196+
"graphql.execution.incremental_publisher.InitialResultRecord",
197+
"graphql.execution.incremental_publisher.PendingResult",
198+
"graphql.execution.incremental_publisher.StreamItemsRecord",
199+
"graphql.execution.incremental_publisher.StreamRecord",
200+
"graphql.execution.Middleware",
201+
"graphql.language.lexer.EscapeSequence",
202+
"graphql.language.visitor.EnterLeaveVisitor",
203+
"graphql.pyutils.ref_map.K",
204+
"graphql.pyutils.ref_map.V",
205+
"graphql.type.definition.GT_co",
206+
"graphql.type.definition.GNT_co",
207+
"graphql.type.definition.TContext",
208+
"graphql.type.schema.InterfaceImplementations",
209+
"graphql.validation.validation_context.VariableUsage",
210+
"graphql.validation.rules.known_argument_names.KnownArgumentNamesOnDirectivesRule",
211+
"graphql.validation.rules.provided_required_arguments.ProvidedRequiredArgumentsOnDirectivesRule",
212+
]
209213
)
210214

211215
ignore_references.update(__builtins__.keys())

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "graphql-core"
3-
version = "3.3.0a7"
3+
version = "3.3.0a8"
44
description = """\
55
GraphQL-core is a Python port of GraphQL.js,\
66
the JavaScript reference implementation for GraphQL."""

src/graphql/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
__all__ = ["version", "version_info", "version_info_js", "version_js"]
99

1010

11-
version = "3.3.0a7"
11+
version = "3.3.0a8"
1212

1313
version_js = "17.0.0a3"
1414

0 commit comments

Comments
 (0)