Skip to content

Commit 83f48f2

Browse files
committed
Bump version v0.4.0 -> v0.4.1
1 parent b6dd2f6 commit 83f48f2

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
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.4.0
2+
current_version = 0.4.1
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 @@ dep_checker
7777
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/dep_checker
7878
:alt: GitHub top language
7979

80-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/dep_checker/v0.4.0
80+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/dep_checker/v0.4.1
8181
:target: https://github.com/domdfcoding/dep_checker/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.4.0"
29+
__version__ = "0.4.1"
3030

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

dep_checker/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
__author__: str = "Dominic Davis-Foster"
4747
__copyright__: str = "2020 Dominic Davis-Foster"
4848
__license__: str = "MIT License"
49-
__version__: str = "0.4.0"
49+
__version__: str = "0.4.1"
5050
__email__: str = "dominic@davis-foster.co.uk"
5151

5252
__all__ = ["template", "check_imports"]
@@ -170,9 +170,9 @@ def check_imports(
170170
| Returns ``0`` if all requirements are used and listed as requirements.
171171
| Returns ``1`` is a requirement is unused, or if a package is imported but not listed as a requirement.
172172
173-
.. versionchanged:: 0.4.0 Added the ``name_mapping`` option.
173+
.. versionchanged:: 0.4.1 Added the ``name_mapping`` option.
174174
175-
.. versionchanged:: 0.4.0 Added the ``work_dir`` option.
175+
.. versionchanged:: 0.4.1 Added the ``work_dir`` option.
176176
"""
177177

178178
ret = 0

doc-source/index.rst

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

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

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

doc-source/usage.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In either case options must be placed in the ``[dep_checker]`` section.
1717

1818
Mapping of requirement names (e.g. "biopython") to the names of packages they provide (e.g. "Bio").
1919

20-
.. versionadded:: 0.4.0
20+
.. versionadded:: 0.4.1
2121

2222
**Example:**
2323

@@ -35,7 +35,7 @@ In either case options must be placed in the ``[dep_checker]`` section.
3535
``from namespace.package import object``,
3636
but not ``from namespace import package``.
3737

38-
.. versionadded:: 0.4.0
38+
.. versionadded:: 0.4.1
3939

4040
**Example:**
4141

@@ -57,7 +57,7 @@ E.g.:
5757
5858
import pytest # nodep
5959
60-
.. versionadded:: 0.4.0
60+
.. versionadded:: 0.4.1
6161

6262

6363
dep-checker
@@ -75,7 +75,7 @@ To do so, add the following to your
7575
`.pre-commit-config.yaml <https://pre-commit.com/#2-add-a-pre-commit-configuration>`_ file:
7676

7777
.. pre-commit::
78-
:rev: 0.4.0
78+
:rev: 0.4.1
7979
:hooks: dep_checker
8080
:args: <PKG_NAME>
8181

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ copyright_years: '2020'
55
author: 'Dominic Davis-Foster'
66
email: 'dominic@davis-foster.co.uk'
77
username: 'domdfcoding'
8-
version: '0.4.0'
8+
version: '0.4.1'
99
license: 'MIT'
1010
short_desc: 'Tool to check all requirements are actually required.'
1111

0 commit comments

Comments
 (0)