Skip to content

Commit

Permalink
Bump version v0.2.3 -> v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Dec 11, 2020
1 parent 50aad4d commit 5184789
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.3
current_version = 0.3.0
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.3
.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/repo_helper_github/v0.3.0
: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.3"
__version__ = "0.3.0"

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.3
:commits-since: v0.3.0
: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.3'
version: '0.3.0'
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 @@ -60,7 +60,7 @@
__author__: str = "Dominic Davis-Foster"
__copyright__: str = "2020 Dominic Davis-Foster"
__license__: str = "MIT License"
__version__: str = "0.2.3"
__version__: str = "0.3.0"
__email__: str = "[email protected]"

__all__ = [
Expand Down Expand Up @@ -112,7 +112,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.3
.. versionchanged:: 0.3.0
Added the ``verbose`` and ``colour`` options.
""" # noqa: D400
Expand All @@ -124,14 +124,14 @@ class GitHubManager(RepoHelper):
"""
Whether to show information on the GitHub API rate limit.
.. versionadded: 0.2.3
.. versionadded: 0.3.0
"""

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

def __init__(
Expand Down Expand Up @@ -163,7 +163,7 @@ def new(self, org: bool = False) -> int:
:param org: Whether the repository should be created for the organisation set as ``username``,
or for the authenticated user (default).
.. versionchanged:: 0.2.3
.. versionchanged:: 0.3.0
Removed the ``verbose`` option. Provide it to the class constructor instead.
Expand Down Expand Up @@ -202,7 +202,7 @@ def update(self, org: bool = False) -> int:
:param org: Whether the repository should be created for the organisation set as ``username``,
or for the authenticated user (default).
.. versionchanged:: 0.2.3
.. versionchanged:: 0.3.0
Removed the ``verbose`` option. Provide it to the class constructor instead.
Expand Down Expand Up @@ -253,7 +253,7 @@ def secrets(self, org: bool = False) -> int:
:param org: Whether the repository should be created for the organisation set as ``username``,
or for the authenticated user (default).
.. versionadded:: 0.2.3
.. versionadded:: 0.3.0
.. versionchanged:: 0.3.0 Added the ``org`` argument.
"""
Expand Down Expand Up @@ -386,7 +386,7 @@ def encrypt_secret(public_key: str, secret_value: str) -> str:
:param public_key:
:param secret_value:
.. versionadded: 0.2.3
.. versionadded: 0.3.0
"""

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

0 comments on commit 5184789

Please sign in to comment.