diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cc262f8..d0386bb 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 commit = True tag = True diff --git a/README.rst b/README.rst index e3bd1fc..eba1782 100644 --- a/README.rst +++ b/README.rst @@ -82,7 +82,7 @@ This is a GitHub action, Python package and command line script that copies dist .. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/octocheese :alt: GitHub top language -.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/octocheese/v0.1.0 +.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/octocheese/v0.2.0 :target: https://github.com/domdfcoding/octocheese/pulse :alt: GitHub commits since tagged version diff --git a/__pkginfo__.py b/__pkginfo__.py index 422bcf0..9baee40 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -26,7 +26,7 @@ 2020 Dominic Davis-Foster """ -__version__ = "0.1.0" +__version__ = "0.2.0" repo_root = pathlib.Path(__file__).parent install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n') diff --git a/doc-source/action.rst b/doc-source/action.rst index 0fcc65e..9c29ca4 100644 --- a/doc-source/action.rst +++ b/doc-source/action.rst @@ -14,7 +14,7 @@ In a GitHub Workflow: releases: runs-on: ubuntu-latest steps: - - uses: domdfcoding/octocheese@v0.1.0 + - uses: domdfcoding/octocheese@v0.2.0 with: pypi_name: "domdf_python_tools" env: diff --git a/doc-source/index.rst b/doc-source/index.rst index ae5a9dc..66f4069 100644 --- a/doc-source/index.rst +++ b/doc-source/index.rst @@ -85,7 +85,7 @@ This is a GitHub action, Python package and command line script that copies dist :alt: GitHub top language .. |commits-since| github-shield:: - :commits-since: v0.1.0 + :commits-since: v0.2.0 :alt: GitHub commits since tagged version .. |commits-latest| github-shield:: diff --git a/octocheese/__init__.py b/octocheese/__init__.py index aa8b5b7..a09d135 100644 --- a/octocheese/__init__.py +++ b/octocheese/__init__.py @@ -30,7 +30,7 @@ __author__: str = "Dominic Davis-Foster" __copyright__: str = "2020 Dominic Davis-Foster" __license__: str = "GNU Lesser General Public License v3 or later (LGPLv3+)" -__version__: str = "0.1.0" +__version__: str = "0.2.0" __email__: str = "dominic@davis-foster.co.uk" __all__ = ["copy_pypi_2_github", "get_file_from_pypi", "update_github_release"] diff --git a/repo_helper.yml b/repo_helper.yml index b87c125..7998800 100644 --- a/repo_helper.yml +++ b/repo_helper.yml @@ -6,7 +6,7 @@ pypi_name: octocheese copyright_years: "2020" author: "Dominic Davis-Foster" email: "dominic@davis-foster.co.uk" -version: "0.1.0" +version: "0.2.0" username: "domdfcoding" license: 'LGPLv3+' short_desc: '🐙 🧀 – Copy PyPI Packages to GitHub Releases'