Skip to content

Commit 03c2b06

Browse files
committed
Release v3.1.4, matching GrapqhQL.js v15.3.0
Replicates graphql/graphql-js@b7ec154
1 parent 1f50f43 commit 03c2b06

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.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.1.3
2+
current_version = 3.1.4
33
commit = False
44
tag = False
55

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ a query language for APIs created by Facebook.
1212
[![Python 3 Status](https://pyup.io/repos/github/graphql-python/graphql-core/python-3-shield.svg)](https://pyup.io/repos/github/graphql-python/graphql-core/)
1313
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
1414

15-
The current version 3.1.3 of GraphQL-core is up-to-date with GraphQL.js version 15.2.0.
15+
The current version 3.1.4 of GraphQL-core is up-to-date with GraphQL.js version 15.3.0.
1616

1717
An extensive test suite with over 2200 unit tests and 100% coverage comprises a
1818
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.1'
6363
# The full version, including alpha/beta/rc tags.
64-
version = release = '3.1.3'
64+
version = release = '3.1.4'
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.1.3"
3+
version = "3.1.4"
44
description = """
55
GraphQL-core is a Python port of GraphQL.js,
66
the JavaScript reference implementation for GraphQL."""

src/graphql/language/source.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ def __init__(
1919
) -> None:
2020
"""Initialize source input.
2121
22-
``name`` and ``location_offset`` are optional. They are useful for clients who
23-
store GraphQL documents in source files; for example, if the GraphQL input
24-
starts at line 40 in a file named Foo.graphql, it might be useful for ``name``
25-
to be "Foo.graphql" and location to be ``(40, 0)``.
22+
The ``name`` and ``location_offset`` parameters are optional, but they are
23+
useful for clients who store GraphQL documents in source files. For example,
24+
if the GraphQL input starts at line 40 in a file named ``Foo.graphql``, it might
25+
be useful for ``name`` to be ``"Foo.graphql"`` and location to be ``(40, 0)``.
2626
27-
line and column in location_offset are 1-indexed
27+
The ``line`` and ``column`` attributes in ``location_offset`` are 1-indexed.
2828
"""
2929
if not isinstance(body, str):
3030
raise TypeError("body must be a string.")

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.1.3"
7+
version = "3.1.4"
88

9-
version_js = "15.2.0"
9+
version_js = "15.3.0"
1010

1111

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

0 commit comments

Comments
 (0)