1# Generate CHANGELOG_LAST.md from changes since the last version tag. (vx.y.z-dev tags are ignored)
2# CHANGELOG_LAST.md can be edited manually if required and manually added to docs/CHANGELOG.md
3#
4# Requirements:
5#    npm install -g auto-changelog
6#
7# Usage:
8#    changelog-gen <next-version>
9#
10# Example: if the latest verision is v5.6.7 the followings can be used for bugfix, minor or major versions:
11#    changelog-gen v5.6.8
12#    changelog-gen v5.7.0
13#    changelog-gen v6.0.0
14
15auto-changelog -t changelog-template.hbs -l false --latest-version $1 --unreleased-only  --tag-pattern ^v[0-9]+.[0-9]+.[0-9]+$ -o CHANGELOG_LAST.md
16