From d36984ac71165db6437c63b5aafd69b05eab52b9 Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Fri, 13 Sep 2024 13:45:12 -0300 Subject: [PATCH] bump version to v16.4 fix codegen with type conditions on interfaces (thanks @dsnam) deprecated python 3.7 since it's more than one year after it's EoL --- doc/source/conf.py | 4 ++-- pyproject.toml | 2 +- sgqlc/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 6fdf5e6..d738393 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = '16.3' +version = '16.4' # The full version, including alpha/beta/rc tags. -release = '16.3' +release = '16.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index abebbf0..b84070e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ norecursedirs = [ [tool.poetry] name = 'sgqlc' -version = '16.3' +version = '16.4' description = 'Simple GraphQL Client' readme = 'README.rst' authors = [ diff --git a/sgqlc/__init__.py b/sgqlc/__init__.py index 4561029..5205da4 100644 --- a/sgqlc/__init__.py +++ b/sgqlc/__init__.py @@ -25,4 +25,4 @@ ''' __docformat__ = 'reStructuredText en' -__version__ = '16.3' +__version__ = '16.4'