Skip to content

Commit

Permalink
Alpha release v3.3.0a3 with new features
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Jun 4, 2023
1 parent e94fe81 commit f7e937c
Show file tree
Hide file tree
Showing 6 changed files with 139 additions and 122 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.3.0a2
current_version = 3.3.0a3
commit = False
tag = False

Expand Down
22 changes: 15 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,20 @@ An extensive test suite with over 2300 unit tests and 100% coverage comprises a
replication of the complete test suite of GraphQL.js, making sure this port is
reliable and compatible with GraphQL.js.

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

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

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.
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.


## Documentation
Expand Down Expand Up @@ -129,9 +137,9 @@ ExecutionResult(data=None, errors=[GraphQLError(
locations=[SourceLocation(line=1, column=3)])])
```

The `graphql_sync` function assumes that all resolvers return values synchronously. By
using coroutines as resolvers, you can also create results in an asynchronous fashion
with the `graphql` function.
The `graphql_sync` function assumes that all resolvers return values synchronously.
By using coroutines as resolvers, you can also create results in an asynchronous
fashion with the `graphql` function.

```python
import asyncio
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

# General information about the project.
project = 'GraphQL-core 3'
copyright = '2022, Christoph Zwerschke'
copyright = '2023, Christoph Zwerschke'
author = 'Christoph Zwerschke'

# The version info for the project you're documenting, acts as replacement for
Expand All @@ -61,7 +61,7 @@
# The short X.Y version.
# version = '3.3'
# The full version, including alpha/beta/rc tags.
version = release = '3.3.0a2'
version = release = '3.3.0a3'

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

0 comments on commit f7e937c

Please sign in to comment.