Skip to content

Commit 4a957d9

Browse files
committed
release: Fix problem for release 1.1.0
1 parent 71e9a5d commit 4a957d9

File tree

6 files changed

+33
-43
lines changed

6 files changed

+33
-43
lines changed

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = 'graphql_query'
1010
copyright = '2022-2023, Denis A. Artyushin'
1111
author = 'Denis A. Artyushin'
12-
version = '1.1.0'
12+
version = '1.1.1'
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

graphql_query/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.0"
1+
__version__ = "1.1.1"

requirements/requirements-dev.txt

+11-13
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,14 @@
44
#
55
# pip-compile --extra=dev --output-file=requirements/requirements-dev.txt --resolver=backtracking pyproject.toml
66
#
7-
astroid==2.15.0
7+
astroid==2.15.5
88
# via pylint
9-
black==23.1.0
9+
black==23.3.0
1010
# via graphql_query (pyproject.toml)
1111
click==8.1.3
1212
# via black
1313
dill==0.3.6
1414
# via pylint
15-
graphql-core==3.2.3
16-
# via graphql_query (pyproject.toml)
1715
isort==5.12.0
1816
# via pylint
1917
jinja2==3.1.2
@@ -24,42 +22,42 @@ markupsafe==2.1.2
2422
# via jinja2
2523
mccabe==0.7.0
2624
# via pylint
27-
mypy==1.1.1
25+
mypy==1.3.0
2826
# via graphql_query (pyproject.toml)
2927
mypy-extensions==1.0.0
3028
# via
3129
# black
3230
# mypy
33-
packaging==23.0
31+
packaging==23.1
3432
# via black
3533
pathspec==0.11.1
3634
# via black
37-
platformdirs==3.1.1
35+
platformdirs==3.5.1
3836
# via
3937
# black
4038
# pylint
41-
pydantic==1.10.6
39+
pydantic==1.10.8
4240
# via
4341
# graphql_query (pyproject.toml)
4442
# pylint-pydantic
45-
pylint==2.17.0
43+
pylint==2.17.4
4644
# via
4745
# pylint-plugin-utils
4846
# pylint-pydantic
49-
pylint-plugin-utils==0.7
47+
pylint-plugin-utils==0.8.2
5048
# via pylint-pydantic
5149
pylint-pydantic==0.1.8
5250
# via graphql_query (pyproject.toml)
53-
ruff==0.0.257
51+
ruff==0.0.270
5452
# via graphql_query (pyproject.toml)
5553
tomli==2.0.1
5654
# via
5755
# black
5856
# mypy
5957
# pylint
60-
tomlkit==0.11.6
58+
tomlkit==0.11.8
6159
# via pylint
62-
typing-extensions==4.5.0
60+
typing-extensions==4.6.2
6361
# via
6462
# astroid
6563
# mypy

requirements/requirements-docs.txt

+12-14
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,20 @@ alabaster==0.7.13
88
# via sphinx
99
babel==2.12.1
1010
# via sphinx
11-
certifi==2022.12.7
11+
certifi==2023.5.7
1212
# via requests
1313
cffi==1.15.1
1414
# via cryptography
1515
charset-normalizer==3.1.0
1616
# via requests
17-
cryptography==39.0.2
17+
cryptography==41.0.0
1818
# via pyjwt
1919
docutils==0.18.1
2020
# via
2121
# sphinx
2222
# sphinx-rtd-theme
23-
github3-py==3.2.0
23+
github3-py==4.0.1
2424
# via sphinxcontrib-github
25-
graphql-core==3.2.3
26-
# via graphql_query (pyproject.toml)
2725
idna==3.4
2826
# via requests
2927
imagesize==1.4.1
@@ -34,27 +32,27 @@ jinja2==3.1.2
3432
# sphinx
3533
markupsafe==2.1.2
3634
# via jinja2
37-
packaging==23.0
35+
packaging==23.1
3836
# via sphinx
3937
pycparser==2.21
4038
# via cffi
41-
pydantic==1.10.6
39+
pydantic==1.10.8
4240
# via graphql_query (pyproject.toml)
43-
pygments==2.14.0
41+
pygments==2.15.1
4442
# via sphinx
45-
pyjwt[crypto]==2.6.0
43+
pyjwt[crypto]==2.7.0
4644
# via github3-py
4745
python-dateutil==2.8.2
4846
# via github3-py
49-
requests==2.28.2
47+
requests==2.31.0
5048
# via
5149
# github3-py
5250
# sphinx
5351
six==1.16.0
5452
# via python-dateutil
5553
snowballstemmer==2.2.0
5654
# via sphinx
57-
sphinx==6.1.3
55+
sphinx==6.2.1
5856
# via
5957
# graphql_query (pyproject.toml)
6058
# sphinx-argparse
@@ -63,7 +61,7 @@ sphinx==6.1.3
6361
# sphinxcontrib-jquery
6462
sphinx-argparse==0.4.0
6563
# via graphql_query (pyproject.toml)
66-
sphinx-rtd-theme==1.2.0
64+
sphinx-rtd-theme==1.2.1
6765
# via graphql_query (pyproject.toml)
6866
sphinxcontrib-applehelp==1.0.4
6967
# via sphinx
@@ -81,9 +79,9 @@ sphinxcontrib-qthelp==1.0.3
8179
# via sphinx
8280
sphinxcontrib-serializinghtml==1.1.5
8381
# via sphinx
84-
typing-extensions==4.5.0
82+
typing-extensions==4.6.2
8583
# via pydantic
8684
uritemplate==4.1.1
8785
# via github3-py
88-
urllib3==1.26.15
86+
urllib3==2.0.2
8987
# via requests

requirements/requirements-test.txt

+6-10
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,34 @@
44
#
55
# pip-compile --extra=test --output-file=requirements/requirements-test.txt --resolver=backtracking pyproject.toml
66
#
7-
attrs==22.2.0
8-
# via pytest
9-
coverage[toml]==7.2.2
7+
coverage[toml]==7.2.7
108
# via pytest-cov
119
exceptiongroup==1.1.1
1210
# via pytest
13-
graphql-core==3.2.3
14-
# via graphql_query (pyproject.toml)
1511
iniconfig==2.0.0
1612
# via pytest
1713
jinja2==3.1.2
1814
# via graphql_query (pyproject.toml)
1915
markupsafe==2.1.2
2016
# via jinja2
21-
packaging==23.0
17+
packaging==23.1
2218
# via pytest
2319
pluggy==1.0.0
2420
# via pytest
25-
pydantic==1.10.6
21+
pydantic==1.10.8
2622
# via graphql_query (pyproject.toml)
27-
pytest==7.2.2
23+
pytest==7.3.1
2824
# via
2925
# graphql_query (pyproject.toml)
3026
# pytest-cov
3127
# pytest-mock
32-
pytest-cov==4.0.0
28+
pytest-cov==4.1.0
3329
# via graphql_query (pyproject.toml)
3430
pytest-mock==3.10.0
3531
# via graphql_query (pyproject.toml)
3632
tomli==2.0.1
3733
# via
3834
# coverage
3935
# pytest
40-
typing-extensions==4.5.0
36+
typing-extensions==4.6.2
4137
# via pydantic

requirements/requirements.txt

+2-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@
44
#
55
# pip-compile --output-file=requirements/requirements.txt --resolver=backtracking pyproject.toml
66
#
7-
graphql-core==3.2.3
8-
# via graphql_query (pyproject.toml)
97
jinja2==3.1.2
108
# via graphql_query (pyproject.toml)
119
markupsafe==2.1.2
1210
# via jinja2
13-
pydantic==1.10.6
11+
pydantic==1.10.8
1412
# via graphql_query (pyproject.toml)
15-
typing-extensions==4.5.0
13+
typing-extensions==4.6.2
1614
# via pydantic

0 commit comments

Comments
 (0)