Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbus committed May 13, 2019
1 parent a74ff98 commit 5cfe798
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "os_credits"
version = "0.2.0"
version = "0.3.0"
description = ""
authors = ["gilbus"]

Expand Down
2 changes: 1 addition & 1 deletion src/os_credits/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.2.0"
__version__ = "0.3.0"
__author__ = "gilbus"
__license__ = "AGPLv3"

0 comments on commit 5cfe798

Please sign in to comment.