Skip to content

Commit cfe03b3

Browse files
committed
Bump version v0.2.2 -> v0.2.3
1 parent 29e91bc commit cfe03b3

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.2
2+
current_version = 0.2.3
33
commit = True
44
tag = True
55

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ repo_helper_github
7777
.. |language| image:: https://img.shields.io/github/languages/top/repo-helper/repo_helper_github
7878
:alt: GitHub top language
7979

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

__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
2020 Dominic Davis-Foster <dominic@davis-foster.co.uk>
2727
"""
2828

29-
__version__ = "0.2.2"
29+
__version__ = "0.2.3"
3030

3131
repo_root = pathlib.Path(__file__).parent
3232
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ repo_helper_github
8080
:alt: GitHub top language
8181

8282
.. |commits-since| github-shield::
83-
:commits-since: v0.2.2
83+
:commits-since: v0.2.3
8484
:alt: GitHub commits since tagged version
8585

8686
.. |commits-latest| github-shield::

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: 'Dominic Davis-Foster'
66
email: 'dominic@davis-foster.co.uk'
77
username: 'repo-helper'
88
assignee: 'domdfcoding'
9-
version: '0.2.2'
9+
version: '0.2.3'
1010
license: 'MIT'
1111
short_desc: "Manage GitHub repositories with repo-helper."
1212

repo_helper_github/__init__.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
__author__: str = "Dominic Davis-Foster"
5959
__copyright__: str = "2020 Dominic Davis-Foster"
6060
__license__: str = "MIT License"
61-
__version__: str = "0.2.2"
61+
__version__: str = "0.2.3"
6262
__email__: str = "dominic@davis-foster.co.uk"
6363

6464
__all__ = [
@@ -110,7 +110,7 @@ class GithubManager(RepoHelper):
110110
:param verbose: Whether to show information on the GitHub API rate limit.
111111
:param colour: Whether to use coloured output.
112112
113-
.. versionchanged:: 0.2.2
113+
.. versionchanged:: 0.2.3
114114
115115
Added the ``verbose`` and ``colour`` options.
116116
"""
@@ -122,14 +122,14 @@ class GithubManager(RepoHelper):
122122
"""
123123
Whether to show information on the GitHub API rate limit.
124124
125-
.. versionadded: 0.2.2
125+
.. versionadded: 0.2.3
126126
"""
127127

128128
colour: Optional[bool]
129129
"""
130130
Whether to use coloured output.
131131
132-
.. versionadded: 0.2.2
132+
.. versionadded: 0.2.3
133133
"""
134134

135135
def __init__(
@@ -154,7 +154,7 @@ def new(self) -> int:
154154
"""
155155
Create a new GitHub repository for this project.
156156
157-
.. versionchanged:: 0.2.2
157+
.. versionchanged:: 0.2.3
158158
159159
Removed the ``verbose`` option. Provide it to the class constructor instead.
160160
"""
@@ -189,7 +189,7 @@ def update(self) -> int:
189189
"""
190190
Update the GitHub repository for this project.
191191
192-
.. versionchanged:: 0.2.2
192+
.. versionchanged:: 0.2.3
193193
194194
Removed the ``verbose`` option. Provide it to the class constructor instead.
195195
"""
@@ -213,7 +213,7 @@ def secrets(self) -> int:
213213
"""
214214
Set or update the secrets of the GitHub repository for this project.
215215
216-
.. versionadded: 0.2.2
216+
.. versionadded: 0.2.3
217217
"""
218218

219219
with self.echo_rate_limit():
@@ -333,7 +333,7 @@ def encrypt_secret(public_key: str, secret_value: str) -> str:
333333
:param public_key:
334334
:param secret_value:
335335
336-
.. versionadded: 0.2.2
336+
.. versionadded: 0.2.3
337337
"""
338338

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

0 commit comments

Comments
 (0)