diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7c8fd8e..c343060 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = True tag = True diff --git a/README.rst b/README.rst index e5b3497..93ef1c3 100644 --- a/README.rst +++ b/README.rst @@ -84,7 +84,7 @@ Spun out from `repo_helper `_. Needs .. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/southwark :alt: GitHub top language -.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/southwark/v0.6.0 +.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/southwark/v0.6.1 :target: https://github.com/domdfcoding/southwark/pulse :alt: GitHub commits since tagged version diff --git a/__pkginfo__.py b/__pkginfo__.py index 1cf7a76..187c798 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -26,7 +26,7 @@ 2020 Dominic Davis-Foster """ -__version__ = "0.6.0" +__version__ = "0.6.1" repo_root = pathlib.Path(__file__).parent install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n') diff --git a/doc-source/index.rst b/doc-source/index.rst index 7d88402..72226a3 100644 --- a/doc-source/index.rst +++ b/doc-source/index.rst @@ -87,7 +87,7 @@ Spun out from `repo_helper `_. Needs :alt: GitHub top language .. |commits-since| github-shield:: - :commits-since: v0.6.0 + :commits-since: v0.6.1 :alt: GitHub commits since tagged version .. |commits-latest| github-shield:: diff --git a/repo_helper.yml b/repo_helper.yml index 7fc77ca..b0c0e6f 100644 --- a/repo_helper.yml +++ b/repo_helper.yml @@ -7,7 +7,7 @@ copyright_years: '2020' author: 'Dominic Davis-Foster' email: 'dominic@davis-foster.co.uk' username: 'domdfcoding' -version: '0.6.0' +version: '0.6.1' license: 'MIT' short_desc: 'Extensions to the Dulwich Git library.' diff --git a/southwark/__init__.py b/southwark/__init__.py index d4ef19a..e47ee1e 100644 --- a/southwark/__init__.py +++ b/southwark/__init__.py @@ -63,7 +63,7 @@ __author__: str = "Dominic Davis-Foster" __copyright__: str = "2020 Dominic Davis-Foster" __license__: str = "MIT License" -__version__: str = "0.6.0" +__version__: str = "0.6.1" __email__: str = "dominic@davis-foster.co.uk" __all__ = [ @@ -83,7 +83,7 @@ class StagedDict(TypedDict): """ The values are lists of filenames, relative to the repository root. - .. versionadded:: 0.6.0 + .. versionadded:: 0.6.1 """ add: List[PathPlus] @@ -95,7 +95,7 @@ class GitStatus(NamedTuple): """ Represents the output of :func:`~.status`. - .. versionadded:: 0.6.0 + .. versionadded:: 0.6.1 """ staged: StagedDict @@ -199,7 +199,7 @@ def format_git_status(status: GitStatus) -> Iterator[str]: :return: An iterator over the formatted list of uncommitted files. - .. versionadded:: 0.6.0 + .. versionadded:: 0.6.1 """ files: Dict[bytes, str] = {} @@ -265,7 +265,7 @@ def get_tree_changes(repo: Union[PathLike, Repo]) -> StagedDict: :returns: Dictionary containing changes for each type of change. - .. versionadded:: 0.6.0 + .. versionadded:: 0.6.1 """ with open_repo_closing(repo) as r: @@ -352,7 +352,7 @@ def clone( :returns: The new repository - .. versionadded:: 0.6.0 + .. versionadded:: 0.6.1 """ # this package