Skip to content

v1.6.0 (2021-08-09)

Compare
Choose a tag to compare
@mtkennerly mtkennerly released this 09 Aug 18:33
· 156 commits to master since this release
  • 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 and v1.2.3). This is now relaxed so that v1, v1.2.3.4, and so on are also recognized.

    If you prefer the old default, you can pass a custom --pattern on the command line or a custom pattern to the Version.from_* methods. Specifically, the previous default used ^v(?P<base>\d+\.\d+\.\d+) instead of the new ^v(?P<base>\d+(\.\d+)*), but the rest of the pattern is the same in both defaults.

  • Added support for execution via python -m dunamai. (Contributed by jstriebel)