Skip to content

v1.21.0 (2024-04-29)

Compare
Choose a tag to compare
@mtkennerly mtkennerly released this 29 Apr 23:23
· 12 commits to master since this release
e6d28dd
  • Generally, when Dunamai can detect the VCS in use, but there's no version set yet, then Dunamai uses 0.0.0 as a fallback, unless strict mode is enabled. This is useful for new projects that do not yet have a release.

    However, if there were some tags and none matched the version pattern, then Dunamai would yield an error. That wouldn't be helpful for a new project with some non-version tag, and it could be incorrect for a monorepo with different tags for different packages.

    Now, Dunamai will use 0.0.0 in this case as well, unless strict mode is enabled.

  • You can now specify a pattern prefix. For example, --pattern default --pattern-prefix some-package- would match tags like some-package-v1.2.3. This is useful if you just want a custom prefix without writing a whole pattern.

  • Added --ignore-untracked option to control checking whether the repository is dirty.