- Fixed an oversight where the default version tag pattern would only find
tags with exactly three parts in the base (e.g.,
v1.0.0
andv1.2.3
). This is now relaxed so thatv1
,v1.2.3.4
, and so on are also recognized. - Added support for execution via
python -m dunamai
. (Contributed by jstriebel)
- Fixed handling of Git tags that contain slashes. (Contributed by ioben)
- Fixed handling of Git tags that contain commas.
- Fixed Semantic Versioning enforcement to allow metadata segments with more than two dot-separated identifiers.
- For Git, avoided use of
--decorate-refs
to maintain compatibility with older Git versions.
- Improved ordering of Git tags, particularly when commit dates were not chronological. (Contributed by mariusvniekerk)
- Improved Subversion handling when in a subdirectory of the repository. (Contributed by Spirotot)
- Added the
--tagged-metadata
option and corresponding attribute on theVersion
class. (Contributed by mariusvniekerk) - Added explicit dependency on setuptools (because of using
pkg_resources
) for environments where it is not installed by default.
- For Git, replaced
--porcelain=v1
with--porcelain
to maintain compatibility with older Git versions.
- Added the
--bump
command line option and thebump
argument toVersion.serialize()
. - Fixed an issue with Git annotated tag sorting. When there was a newer annotated tag A on an older commit and an older annotated tag B on a newer commit, Dunamai would choose tag A, but will now correctly choose tag B because the commit is newer.
- With Git, trigger the dirty flag when there are untracked files. (Contributed by jpc4242)
- Fixed ambiguous reference error when using Git if a tag and branch name were identical.
-
Previously, when there were not yet any version-like tags, the distance would be set to 0, so the only differentiator was the commit ID. Now, the distance will be set to the number of commits so far. For example:
- No commits: base = 0.0.0, distance = 0
- 1 commit, no tags: base = 0.0.0, distance = 1
- 10 commits, no tags: base = 0.0.0, distance = 10
- Added
--debug
flag.
- Added these functions to the public API:
serialize_pep440
serialize_semver
serialize_pvp
bump_version
-
Changed the
Version
class to align with Dunamai's own semantics instead of PEP 440's semantics.Previously,
Version
implemented all of PEP 440's features, like epochs and dev releases, even though Dunamai itself did not use epochs (unless you created your ownVersion
instance with one and serialized it) and always set dev to 0 in thefrom_git
/etc methods. Theserialize
method then tried to generalize those PEP 440 concepts to other versioning schemes, as in0.1.0-epoch.1
for Semantic Versioning, even though that doesn't have an equivalent meaning in that scheme.Now, the
Version
class implements the semantics used by Dunamai, giving it more power in the serialization to map those concepts in an appropriate way for each scheme. For example,dev0
is now only added for PEP 440 (in order to be compatible with Pip's--pre
flag), butdev.0
is no longer added for Semantic Versioning because it served no purpose there.API changes:
post
has been renamed todistance
, and its type is simplyint
rather thanOptional[int]
epoch
anddev
have been removedpre_type
has been renamed tostage
pre_number
has been renamed torevision
, and it is no longer required when specifying a stage
-
Improved error reporting when the version control system cannot be detected and when a specified VCS is unavailable.
-
Improved the default regular expression for tags:
- It now requires a full match of the tag.
- It now recognizes when the
base
andstage
are separated by a hyphen. - It now recognizes when the
stage
andrevision
are separated by a dot. - It now allows a
stage
without arevision
.
- Added Fossil support.
- Fixed case with Git/Mercurial/Subversion/Bazaar where, if you checked out an older commit, then Dunamai would consider tags for commits both before and after the commit that was checked out. It now only considers tags for the checked out commit or one of its ancestors, making the results more deterministic.
- Changed VCS detection to be based on the result of VCS commands rather than
looking for VCS-specific directories/files. This avoids the risk of false
positives and simplifies cases with inconsistent VCS files (e.g.,
Fossil uses
.fslckout
on Linux and_FOSSIL_
on Windows)
- Fixed handling of annotated Git tags, which were previously ignored.
- Changed
Version.from_any_vcs
to accept thetag_dir
argument, which will only be used if Subversion is the detected VCS. Likewise,dunamai from any
now accepts--tag-dir
. - Added
Version.from_vcs
to make it easier for other tools to map from a user's VCS configuration to the appropriate function.
- Fixed issue on Linux where shell commands were not interpreted correctly.
- Added Bazaar support.
- Added the
dunamai check
command and the correspondingcheck_version
function. - Added the option to check just the latest tag or to keep checking tags until a match is found. The default behavior is now to keep checking.
- Added enforcement of Semantic Versioning rule against numeric segments with a leading zero.
- Renamed the
with_metadata
andwith_dirty
arguments ofVersion.serialize
tometadata
anddirty
respectively. - Fixed the equality and ordering of
Version
to consider all attributes.dirty
andcommit
were ignored previously if neitherpost
nordev
were set, anddirty=None
anddirty=False
were not distinguished.
- Added Subversion support.
- Added support for the PVP style.
- Changed the type of the
style
argument inVersion.serialize
fromstr
toStyle
.
- Added built-in Semantic Versioning output style in addition to PEP 440.
- Added style validation for custom output formats.
- Added Darcs support.
- Added support for custom serialization formats.
- Added Mercurial support.
- Added a CLI.
- Renamed
Version.from_git_describe
toVersion.from_git
. - Changed behavior of
Version.serialize
argumentwith_metadata
so that, by default, metadata is excluded when post and dev are not set. - Added
with_dirty
argument toVersion.serialize
and removedflag_dirty
argument fromVersion.from_git
. The information should always be collected, and it is up to the serialization step to decide what to do with it. - Added
Version.from_any_vcs
. - Removed
source
attribute ofVersion
since some VCSes may require multiple commands in conjunction and therefore not have a single source string.
- Fixed a wrong Git command being used.
- Made metadata serialization opt-in.
- Initial release.