From 9d6b1eefe579d4432e141f1aef365a070913eb03 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Sun, 27 Dec 2020 01:44:18 +0100 Subject: [PATCH] Bump package version to v0.7.1. --- doc/conf.py | 4 ++-- pyVHDLModel/VHDLModel.py | 7 +++++++ pyVHDLModel/__init__.py | 7 +++++++ setup.py | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 3d23149fa..3a513aa2b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -38,7 +38,7 @@ def _LatestTagName(): # The full version, including alpha/beta/rc tags version = "0.7" # The short X.Y version. -release = "0.7.0" # The full version, including alpha/beta/rc tags. +release = "0.7.1" # The full version, including alpha/beta/rc tags. try: if _IsUnderGitControl: latestTagName = _LatestTagName()[1:] # remove prefix "v" @@ -97,7 +97,7 @@ def _LatestTagName(): html_context = {} ctx = Path(__file__).resolve().parent / 'context.json' if ctx.is_file(): - html_context.update(loads(ctx.open('r').read())) + html_context.update(loads(ctx.open('r').read())) html_theme_path = ["."] html_theme = "_theme" diff --git a/pyVHDLModel/VHDLModel.py b/pyVHDLModel/VHDLModel.py index 4529a3a22..754a48ef8 100644 --- a/pyVHDLModel/VHDLModel.py +++ b/pyVHDLModel/VHDLModel.py @@ -1,6 +1,13 @@ # EMACS settings: -*- tab-width: 2; indent-tabs-mode: t; python-indent-offset: 2 -*- # vim: tabstop=2:shiftwidth=2:noexpandtab # kate: tab-width 2; replace-tabs off; indent-width 2; +# ============================================================================= +# __ ___ _ ____ _ __ __ _ _ +# _ __ _ \ \ / / | | | _ \| | | \/ | ___ __| | ___| | +# | '_ \| | | \ \ / /| |_| | | | | | | |\/| |/ _ \ / _` |/ _ \ | +# | |_) | |_| |\ V / | _ | |_| | |___| | | | (_) | (_| | __/ | +# | .__/ \__, | \_/ |_| |_|____/|_____|_| |_|\___/ \__,_|\___|_| +# |_| |___/ # ============================================================================== # Authors: Patrick Lehmann # diff --git a/pyVHDLModel/__init__.py b/pyVHDLModel/__init__.py index 06175170a..afa897fde 100644 --- a/pyVHDLModel/__init__.py +++ b/pyVHDLModel/__init__.py @@ -1,6 +1,13 @@ # EMACS settings: -*- tab-width: 2; indent-tabs-mode: t; python-indent-offset: 2 -*- # vim: tabstop=2:shiftwidth=2:noexpandtab # kate: tab-width 2; replace-tabs off; indent-width 2; +# ============================================================================= +# __ ___ _ ____ _ __ __ _ _ +# _ __ _ \ \ / / | | | _ \| | | \/ | ___ __| | ___| | +# | '_ \| | | \ \ / /| |_| | | | | | | |\/| |/ _ \ / _` |/ _ \ | +# | |_) | |_| |\ V / | _ | |_| | |___| | | | (_) | (_| | __/ | +# | .__/ \__, | \_/ |_| |_|____/|_____|_| |_|\___/ \__,_|\___|_| +# |_| |___/ # ============================================================================== # Authors: Patrick Lehmann # diff --git a/setup.py b/setup.py index 88685dc7f..b27b461dd 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ setuptools.setup( name=projectName, - version="0.7.0", + version="0.7.1", author="Patrick Lehmann", author_email="Paebbels@gmail.com",