Skip to content

Commit

Permalink
Release v1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mtkennerly committed May 6, 2022
1 parent ddc1e95 commit 99b85dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions dunamai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand Down

0 comments on commit 99b85dd

Please sign in to comment.