Skip to content

Commit

Permalink
Bump version v0.2.2 -> v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Dec 3, 2020
1 parent 29e91bc commit cfe03b3
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 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.2.2
current_version = 0.2.3
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 @@ -77,7 +77,7 @@ repo_helper_github
.. |language| image:: https://img.shields.io/github/languages/top/repo-helper/repo_helper_github
:alt: GitHub top language

.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/repo_helper_github/v0.2.2
.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/repo_helper_github/v0.2.3
:target: https://github.com/repo-helper/repo_helper_github/pulse
:alt: GitHub commits since tagged version

Expand Down
2 changes: 1 addition & 1 deletion __pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
2020 Dominic Davis-Foster <[email protected]>
"""

__version__ = "0.2.2"
__version__ = "0.2.3"

repo_root = pathlib.Path(__file__).parent
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
Expand Down
2 changes: 1 addition & 1 deletion doc-source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ repo_helper_github
:alt: GitHub top language

.. |commits-since| github-shield::
:commits-since: v0.2.2
:commits-since: v0.2.3
:alt: GitHub commits since tagged version

.. |commits-latest| github-shield::
Expand Down
2 changes: 1 addition & 1 deletion repo_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ author: 'Dominic Davis-Foster'
email: '[email protected]'
username: 'repo-helper'
assignee: 'domdfcoding'
version: '0.2.2'
version: '0.2.3'
license: 'MIT'
short_desc: "Manage GitHub repositories with repo-helper."

Expand Down
16 changes: 8 additions & 8 deletions repo_helper_github/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
__author__: str = "Dominic Davis-Foster"
__copyright__: str = "2020 Dominic Davis-Foster"
__license__: str = "MIT License"
__version__: str = "0.2.2"
__version__: str = "0.2.3"
__email__: str = "[email protected]"

__all__ = [
Expand Down Expand Up @@ -110,7 +110,7 @@ class GithubManager(RepoHelper):
:param verbose: Whether to show information on the GitHub API rate limit.
:param colour: Whether to use coloured output.
.. versionchanged:: 0.2.2
.. versionchanged:: 0.2.3
Added the ``verbose`` and ``colour`` options.
"""
Expand All @@ -122,14 +122,14 @@ class GithubManager(RepoHelper):
"""
Whether to show information on the GitHub API rate limit.
.. versionadded: 0.2.2
.. versionadded: 0.2.3
"""

colour: Optional[bool]
"""
Whether to use coloured output.
.. versionadded: 0.2.2
.. versionadded: 0.2.3
"""

def __init__(
Expand All @@ -154,7 +154,7 @@ def new(self) -> int:
"""
Create a new GitHub repository for this project.
.. versionchanged:: 0.2.2
.. versionchanged:: 0.2.3
Removed the ``verbose`` option. Provide it to the class constructor instead.
"""
Expand Down Expand Up @@ -189,7 +189,7 @@ def update(self) -> int:
"""
Update the GitHub repository for this project.
.. versionchanged:: 0.2.2
.. versionchanged:: 0.2.3
Removed the ``verbose`` option. Provide it to the class constructor instead.
"""
Expand All @@ -213,7 +213,7 @@ def secrets(self) -> int:
"""
Set or update the secrets of the GitHub repository for this project.
.. versionadded: 0.2.2
.. versionadded: 0.2.3
"""

with self.echo_rate_limit():
Expand Down Expand Up @@ -333,7 +333,7 @@ def encrypt_secret(public_key: str, secret_value: str) -> str:
:param public_key:
:param secret_value:
.. versionadded: 0.2.2
.. versionadded: 0.2.3
"""

public_key = public.PublicKey(public_key.encode("utf-8"), encoding.Base64Encoder())
Expand Down

0 comments on commit cfe03b3

Please sign in to comment.