Skip to content

Commit

Permalink
Bump version: 0.0.1 → 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Jun 26, 2020
1 parent 62632db commit 7ee44b6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.1
current_version = 0.0.2
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,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.0.1
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/octocheese/v0.0.2
:target: https://github.com/domdfcoding/octocheese/pulse
:alt: GitHub commits since tagged version

Expand Down
4 changes: 2 additions & 2 deletions __pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
2020 Dominic Davis-Foster <dominic@davis-foster.co.uk>
"""

__version__ = "0.0.1"
__version__ = "0.0.2"

modname = "octocheese"
pypi_name = "octocheese"
Expand All @@ -70,7 +70,7 @@
repo_root = pathlib.Path(__file__).parent

# Get info from files; set: long_description
long_description = (repo_root / "README.rst").read_text(encoding="utf-8").replace("0.0.1", __version__) + '\n'
long_description = (repo_root / "README.rst").read_text(encoding="utf-8").replace("0.0.2", __version__) + '\n'

install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
extras_require = {'all': []}
Expand Down
2 changes: 1 addition & 1 deletion doc-source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,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.0.1
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/octocheese/v0.0.2
:target: https://github.com/domdfcoding/octocheese/pulse
:alt: GitHub commits since tagged version

Expand Down
2 changes: 1 addition & 1 deletion git_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ modname: octocheese
copyright_years: "2020"
author: "Dominic Davis-Foster"
email: "dominic@davis-foster.co.uk"
version: "0.0.1"
version: "0.0.2"
username: "domdfcoding"
license: 'LGPLv3+'
short_desc: 'Copy PyPI Packages to GitHub Releases'
Expand Down
2 changes: 1 addition & 1 deletion octocheese/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
__copyright__: str = "2020 Dominic Davis-Foster"

__license__: str = "GNU Lesser General Public License v3 or later (LGPLv3+)"
__version__: str = "0.0.1"
__version__: str = "0.0.2"
__email__: str = "dominic@davis-foster.co.uk"

0 comments on commit 7ee44b6

Please sign in to comment.