diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e583fae..d60eaa9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.7 +current_version = 0.0.8 commit = True tag = True diff --git a/README.rst b/README.rst index 03fcb38..13a634a 100644 --- a/README.rst +++ b/README.rst @@ -113,7 +113,7 @@ whey .. |language| image:: https://img.shields.io/github/languages/top/repo-helper/whey :alt: GitHub top language -.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/whey/v0.0.7 +.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/whey/v0.0.8 :target: https://github.com/repo-helper/whey/pulse :alt: GitHub commits since tagged version diff --git a/__pkginfo__.py b/__pkginfo__.py index 723d2f0..36d72d7 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -26,7 +26,7 @@ 2021 Dominic Davis-Foster """ -__version__ = "0.0.7" +__version__ = "0.0.8" repo_root = pathlib.Path(__file__).parent install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n') extras_require = {"readme": ["readme-renderer[md]>=27.0"], "all": ["readme-renderer[md]>=27.0"]} diff --git a/doc-source/index.rst b/doc-source/index.rst index 59ea0d4..ff47c80 100644 --- a/doc-source/index.rst +++ b/doc-source/index.rst @@ -133,7 +133,7 @@ whey :alt: GitHub top language .. |commits-since| github-shield:: - :commits-since: v0.0.7 + :commits-since: v0.0.8 :alt: GitHub commits since tagged version .. |commits-latest| github-shield:: diff --git a/pyproject.toml b/pyproject.toml index 9ef25b5..8c13d98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "whey" -version = "0.0.7" +version = "0.0.8" description = "A simple Python wheel builder for simple projects." readme = "README.rst" keywords = [ "pep517", "pep621", "build", "sdist", "wheel", "packaging", "distribution",] diff --git a/repo_helper.yml b/repo_helper.yml index 2d1341d..b0600aa 100644 --- a/repo_helper.yml +++ b/repo_helper.yml @@ -7,7 +7,7 @@ email: 'dominic@davis-foster.co.uk' username: 'repo-helper' assignee: 'domdfcoding' primary_conda_channel: "domdfcoding" -version: '0.0.7' +version: '0.0.8' license: 'MIT' short_desc: 'A simple Python wheel builder for simple projects.' diff --git a/whey/__init__.py b/whey/__init__.py index 3f9be0a..4ef2eb4 100644 --- a/whey/__init__.py +++ b/whey/__init__.py @@ -41,7 +41,7 @@ __author__: str = "Dominic Davis-Foster" __copyright__: str = "2021 Dominic Davis-Foster" __license__: str = "MIT License" -__version__: str = "0.0.7" +__version__: str = "0.0.8" __email__: str = "dominic@davis-foster.co.uk"