Skip to content

Commit 252ef26

Browse files
committed
Bump version v0.2.0 -> v0.3.0
1 parent 83b786c commit 252ef26

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

.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.0
2+
current_version = 0.3.0
33
commit = True
44
tag = True
55

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ importcheck
9191
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/importcheck
9292
:alt: GitHub top language
9393

94-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/importcheck/v0.2.0
94+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/importcheck/v0.3.0
9595
:target: https://github.com/domdfcoding/importcheck/pulse
9696
:alt: GitHub commits since tagged version
9797

__pkginfo__.py

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

29-
__version__ = "0.2.0"
29+
__version__ = "0.3.0"
3030
repo_root = pathlib.Path(__file__).parent
3131
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
3232
extras_require = {"all": []}

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ importcheck
9393
:alt: GitHub top language
9494

9595
.. |commits-since| github-shield::
96-
:commits-since: v0.2.0
96+
:commits-since: v0.3.0
9797
:alt: GitHub commits since tagged version
9898

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

importcheck/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
__author__: str = "Dominic Davis-Foster"
6565
__copyright__: str = "2021 Dominic Davis-Foster"
6666
__license__: str = "MIT License"
67-
__version__: str = "0.2.0"
67+
__version__: str = "0.3.0"
6868
__email__: str = "dominic@davis-foster.co.uk"
6969

7070
_module = Plural("module", "modules")
@@ -213,7 +213,7 @@ def paths_to_modules(*paths: PathLike) -> Iterator[str]:
213213
r"""
214214
Convert filesystem paths (e.g. ``foo/bar.py``) into dotted import names (e.g. ``foo.bar``).
215215
216-
.. versionadded:: 0.2.0
216+
.. versionadded:: 0.3.0
217217
218218
:param \*paths: The paths to convert.
219219
"""

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "whey"
44

55
[project]
66
name = "importcheck"
7-
version = "0.2.0"
7+
version = "0.3.0"
88
description = "A tool to check all modules can be correctly imported."
99
readme = "README.rst"
1010
keywords = [ "import", "test",]

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ copyright_years: '2021'
55
author: 'Dominic Davis-Foster'
66
email: 'dominic@davis-foster.co.uk'
77
username: 'domdfcoding'
8-
version: '0.2.0'
8+
version: '0.3.0'
99
license: 'MIT'
1010
short_desc: 'A tool to check all modules can be correctly imported.'
1111

0 commit comments

Comments
 (0)