Skip to content

Commit f7e937c

Browse files
committed
Alpha release v3.3.0a3 with new features
1 parent e94fe81 commit f7e937c

File tree

6 files changed

+139
-122
lines changed

6 files changed

+139
-122
lines changed

.bumpversion.cfg

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

README.md

+15-7
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,20 @@ An extensive test suite with over 2300 unit tests and 100% coverage comprises a
1414
replication of the complete test suite of GraphQL.js, making sure this port is
1515
reliable and compatible with GraphQL.js.
1616

17-
The current stable version 3.2.3 of GraphQL-core is up-to-date with GraphQL.js version 16.6.0.
17+
The current stable version 3.2.3 of GraphQL-core is up-to-date with GraphQL.js
18+
version 16.6.0 and supports Python version 3.6 and newer.
1819

19-
You can also try out the latest alpha version 3.3.0a2 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.
20+
You can also try out the latest alpha version 3.3.0a3 of GraphQL-core
21+
which is up-to-date with GraphQL.js version 17.0.0a2.
22+
Please note that this new minor version of GraphQL-core does not support
23+
Python 3.6 anymore.
2124

22-
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.
25+
Note that for various reasons, GraphQL-core does not use SemVer like GraphQL.js.
26+
Changes in the major version of GraphQL.js are reflected in the minor version of
27+
GraphQL-core instead. This means there can be breaking changes in the API
28+
when the minor version changes, and only patch releases are fully backward compatible.
29+
Therefore, we recommend something like `=~ 3.2.0` as version specifier
30+
when including GraphQL-core as a dependency.
2331

2432

2533
## Documentation
@@ -129,9 +137,9 @@ ExecutionResult(data=None, errors=[GraphQLError(
129137
locations=[SourceLocation(line=1, column=3)])])
130138
```
131139

132-
The `graphql_sync` function assumes that all resolvers return values synchronously. By
133-
using coroutines as resolvers, you can also create results in an asynchronous fashion
134-
with the `graphql` function.
140+
The `graphql_sync` function assumes that all resolvers return values synchronously.
141+
By using coroutines as resolvers, you can also create results in an asynchronous
142+
fashion with the `graphql` function.
135143

136144
```python
137145
import asyncio

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
# General information about the project.
5353
project = 'GraphQL-core 3'
54-
copyright = '2022, Christoph Zwerschke'
54+
copyright = '2023, Christoph Zwerschke'
5555
author = 'Christoph Zwerschke'
5656

5757
# The version info for the project you're documenting, acts as replacement for
@@ -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.0a2'
64+
version = release = '3.3.0a3'
6565

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

0 commit comments

Comments
 (0)