From 0500489808521b3f3ac7dca810a4ac87199cd81c Mon Sep 17 00:00:00 2001 From: Pat Doyle Date: Fri, 17 Mar 2023 10:20:24 -0500 Subject: [PATCH] adding version --- docs/source/conf.py | 2 +- gvol/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 0740c0c..218c5ff 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "Denys Halenok" # The full version, including alpha/beta/rc tags -release = "0.5.4" +release = "0.5.5" # -- General configuration --------------------------------------------------- diff --git a/gvol/__init__.py b/gvol/__init__.py index fe619cf..069e684 100644 --- a/gvol/__init__.py +++ b/gvol/__init__.py @@ -1,4 +1,4 @@ __all__ = ("__version__", "GVol") -__version__ = "0.5.4" +__version__ = "0.5.5" from gvol.client import GVol diff --git a/pyproject.toml b/pyproject.toml index cdf089b..1e7cfee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gvol" -version = "0.5.4" +version = "0.5.5" description = "GVol is a Python library to access the GVol API" authors = ["Denys Halenok "]