Skip to content

Commit 9d6b1ee

Browse files
committed
Bump package version to v0.7.1.
1 parent 74732d8 commit 9d6b1ee

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def _LatestTagName():
3838

3939
# The full version, including alpha/beta/rc tags
4040
version = "0.7" # The short X.Y version.
41-
release = "0.7.0" # The full version, including alpha/beta/rc tags.
41+
release = "0.7.1" # The full version, including alpha/beta/rc tags.
4242
try:
4343
if _IsUnderGitControl:
4444
latestTagName = _LatestTagName()[1:] # remove prefix "v"
@@ -97,7 +97,7 @@ def _LatestTagName():
9797
html_context = {}
9898
ctx = Path(__file__).resolve().parent / 'context.json'
9999
if ctx.is_file():
100-
html_context.update(loads(ctx.open('r').read()))
100+
html_context.update(loads(ctx.open('r').read()))
101101

102102
html_theme_path = ["."]
103103
html_theme = "_theme"

pyVHDLModel/VHDLModel.py

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# EMACS settings: -*- tab-width: 2; indent-tabs-mode: t; python-indent-offset: 2 -*-
22
# vim: tabstop=2:shiftwidth=2:noexpandtab
33
# kate: tab-width 2; replace-tabs off; indent-width 2;
4+
# =============================================================================
5+
# __ ___ _ ____ _ __ __ _ _
6+
# _ __ _ \ \ / / | | | _ \| | | \/ | ___ __| | ___| |
7+
# | '_ \| | | \ \ / /| |_| | | | | | | |\/| |/ _ \ / _` |/ _ \ |
8+
# | |_) | |_| |\ V / | _ | |_| | |___| | | | (_) | (_| | __/ |
9+
# | .__/ \__, | \_/ |_| |_|____/|_____|_| |_|\___/ \__,_|\___|_|
10+
# |_| |___/
411
# ==============================================================================
512
# Authors: Patrick Lehmann
613
#

pyVHDLModel/__init__.py

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# EMACS settings: -*- tab-width: 2; indent-tabs-mode: t; python-indent-offset: 2 -*-
22
# vim: tabstop=2:shiftwidth=2:noexpandtab
33
# kate: tab-width 2; replace-tabs off; indent-width 2;
4+
# =============================================================================
5+
# __ ___ _ ____ _ __ __ _ _
6+
# _ __ _ \ \ / / | | | _ \| | | \/ | ___ __| | ___| |
7+
# | '_ \| | | \ \ / /| |_| | | | | | | |\/| |/ _ \ / _` |/ _ \ |
8+
# | |_) | |_| |\ V / | _ | |_| | |___| | | | (_) | (_| | __/ |
9+
# | .__/ \__, | \_/ |_| |_|____/|_____|_| |_|\___/ \__,_|\___|_|
10+
# |_| |___/
411
# ==============================================================================
512
# Authors: Patrick Lehmann
613
#

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
setuptools.setup(
5252
name=projectName,
53-
version="0.7.0",
53+
version="0.7.1",
5454

5555
author="Patrick Lehmann",
5656
author_email="[email protected]",

0 commit comments

Comments
 (0)