Skip to content

Commit 5023c1e

Browse files
committed
Alpha release v3.3.0a1, matching GraphQL.js v17.0.0a1
Replicates graphql/graphql-js@d9eda1f
1 parent 0d67023 commit 5023c1e

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

Diff for: .bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.3.0a0
2+
current_version = 3.3.0a1
33
commit = False
44
tag = False
55

Diff for: README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@ a query language for APIs created by Facebook.
1010
![Lint Status](https://github.com/graphql-python/graphql-core/actions/workflows/lint.yml/badge.svg)
1111
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
1212

13-
The current version 3.2.3 of GraphQL-core is up-to-date with GraphQL.js version 16.6.0.
14-
1513
An extensive test suite with over 2300 unit tests and 100% coverage comprises a
1614
replication of the complete test suite of GraphQL.js, making sure this port is
1715
reliable and compatible with GraphQL.js.
1816

17+
The current stable version 3.2.3 of GraphQL-core is up-to-date with GraphQL.js version 16.6.0.
18+
19+
You can also try out the latest alpha version 3.3.0a1 of GraphQL-core that is up-to-date with GraphQL.js version 17.0.0a1.
20+
Please note that this new minor version of GraphQL-core does not support Python 3.7 anymore.
21+
1922
Note that for various reasons, GraphQL-core does not use SemVer like GraphQL.js. Changes in the major version of GraphQL.js are reflected in the minor version of GraphQL-core instead. This means there can be breaking changes in the API when the minor version changes, and only patch releases are fully backward compatible. Therefore, we recommend something like `=~ 3.2.0` as version specifier when including GraphQL-core as a dependency.
2023

2124

Diff for: docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
# version = '3.3'
6363
# The full version, including alpha/beta/rc tags.
64-
version = release = '3.3.0a0'
64+
version = release = '3.3.0a1'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "graphql-core"
3-
version = "17.0.0a0"
3+
version = "3.3.0a1"
44
description = """
55
GraphQL-core is a Python port of GraphQL.js,\
66
the JavaScript reference implementation for GraphQL."""

Diff for: src/graphql/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
__all__ = ["version", "version_info", "version_js", "version_info_js"]
88

99

10-
version = "3.3.0a0"
10+
version = "3.3.0a1"
1111

12-
version_js = "17.0.0a0"
12+
version_js = "17.0.0a1"
1313

1414

1515
_re_version = re.compile(r"(\d+)\.(\d+)\.(\d+)(\D*)(\d*)")

0 commit comments

Comments
 (0)