From 5cfe798278988b1798d4241ee7f524921f9fcf0e Mon Sep 17 00:00:00 2001 From: gilbus Date: Mon, 13 May 2019 13:33:12 +0200 Subject: [PATCH] bump version --- docs/conf.py | 8 ++++++-- pyproject.toml | 2 +- src/os_credits/__init__.py | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index d81ec23..2fa269a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,12 +14,16 @@ # import sys # sys.path.insert(0, os.path.abspath('.')) +from datetime import datetime + +from os_credits import __author__, __version__ # -- Project information ----------------------------------------------------- project = "OpenStack Credits Service" -copyright = "2019, gilbus" -author = "gilbus" +copyright = "{}, {}".format(datetime.now().year, __author__) +author = __author__ +version = __version__ # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 95329ef..e6bb037 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "os_credits" -version = "0.2.0" +version = "0.3.0" description = "" authors = ["gilbus"] diff --git a/src/os_credits/__init__.py b/src/os_credits/__init__.py index a13a896..f09ef9a 100644 --- a/src/os_credits/__init__.py +++ b/src/os_credits/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.2.0" +__version__ = "0.3.0" __author__ = "gilbus" __license__ = "AGPLv3"