diff --git a/CHANGELOG.md b/CHANGELOG.md index 38e97e1..ae6bbd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## v1.12.0 (2022-05-07) * Added `Pattern` type for named pattern presets. Currently, this includes: * `Pattern.Default` (`--pattern default`) for the existing default. diff --git a/dunamai/__init__.py b/dunamai/__init__.py index 37d0cd3..8637459 100644 --- a/dunamai/__init__.py +++ b/dunamai/__init__.py @@ -1285,7 +1285,7 @@ def from_any_vcs( :param tag_branch: Branch on which to find tags, if different than the current branch. This is only used for Git currently. :param full_commit: Get the full commit hash instead of the short form. - This is only used for Git currently. + This is only used for Git and Mercurial. """ vcs = _detect_vcs() return cls._do_vcs_callback(vcs, pattern, latest_tag, tag_dir, tag_branch, full_commit) @@ -1317,7 +1317,7 @@ def from_vcs( :param tag_branch: Branch on which to find tags, if different than the current branch. This is only used for Git currently. :param full_commit: Get the full commit hash instead of the short form. - This is only used for Git currently. + This is only used for Git and Mercurial. """ return cls._do_vcs_callback(vcs, pattern, latest_tag, tag_dir, tag_branch, full_commit) diff --git a/pyproject.toml b/pyproject.toml index aa1a0ab..ae37af2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dunamai" -version = "1.11.1" +version = "1.12.0" description = "Dynamic version generation" license = "MIT" authors = ["Matthew T. Kennerly "]