Skip to content

Commit 2a1275e

Browse files
committed
Bump version
Replicates graphql/graphql-js@48afd37
1 parent fb82185 commit 2a1275e

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.2.8
2+
current_version = 3.2.9
33
commit = False
44
tag = False
55

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111

12+
permissions:
13+
id-token: write # mandatory for trusted publishing
14+
1215
steps:
1316
- uses: actions/checkout@v6
1417

@@ -24,6 +27,3 @@ jobs:
2427
2528
- name: Publish a Python distribution to PyPI
2629
uses: pypa/gh-action-pypi-publish@release/v1
27-
with:
28-
user: __token__
29-
password: ${{ secrets.PYPI_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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.8 of GraphQL-core is up-to-date with GraphQL.js version 16.9.0.
13+
The current version 3.2.9 of GraphQL-core is up-to-date with GraphQL.js version 16.10.0.
1414

1515
An extensive test suite with over 2500 unit tests and 100% coverage comprises a
1616
replication of the complete test suite of GraphQL.js, making sure this port is

docs/conf.py

Lines 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.2'
6363
# The full version, including alpha/beta/rc tags.
64-
version = release = "3.2.8"
64+
version = release = "3.2.9"
6565

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

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.2.8"
3+
version = "3.2.9"
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
__all__ = ["version", "version_info", "version_js", "version_info_js"]
55

66

7-
version = "3.2.8"
7+
version = "3.2.9"
88

9-
version_js = "16.9.0"
9+
version_js = "16.10.0"
1010

1111

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

0 commit comments

Comments
 (0)