Skip to content

Commit

Permalink
Bump version to v0.13.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Aug 27, 2021
1 parent 991fe5a commit 4bbb024
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def _LatestTagName():
return check_output(["git", "describe", "--abbrev=0", "--tags"], universal_newlines=True).strip()

# The full version, including alpha/beta/rc tags
version = "0.12" # The short X.Y version.
release = "0.12.0" # The full version, including alpha/beta/rc tags.
version = "0.13" # The short X.Y version.
release = "0.13.0" # The full version, including alpha/beta/rc tags.
try:
if _IsUnderGitControl:
latestTagName = _LatestTagName()[1:] # remove prefix "v"
Expand Down
4 changes: 2 additions & 2 deletions pyVHDLModel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@
:license: Apache License, Version 2.0
"""
from enum import IntEnum, unique, Enum
from typing import List, Iterable, Union, Optional as Nullable
from typing import List, Iterable, Union, Optional as Nullable

from pydecor import export


__version__ = "0.12.0"
__version__ = "0.13.0"

SimpleOrAttribute = Union['SimpleName', 'AttributeName']

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# Assemble all package information
setuptools_setup(
name=projectName,
version="0.12.0",
version="0.13.0",

author="Patrick Lehmann",
author_email="Paebbels@gmail.com",
Expand Down

0 comments on commit 4bbb024

Please sign in to comment.