Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5023c1e

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

File tree

Expand file treeCollapse file tree

5 files changed

+10
-7
lines changed
Filter options
Expand file treeCollapse file tree

5 files changed

+10
-7
lines changed

‎.bumpversion.cfg

Copy file name to clipboardExpand all lines: .bumpversion.cfg
+1-1Lines changed: 1 addition & 1 deletion
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

‎README.md

Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
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

‎docs/conf.py

Copy file name to clipboardExpand all lines: docs/conf.py
+1-1Lines changed: 1 addition & 1 deletion
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.

‎pyproject.toml

Copy file name to clipboardExpand all lines: pyproject.toml
+1-1Lines 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 = "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."""

‎src/graphql/version.py

Copy file name to clipboardExpand all lines: src/graphql/version.py
+2-2Lines changed: 2 additions & 2 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.