Release Tools 0.6.0 - (2023-08-25)
New features:
- Notes command supports multiple authors in changelog entries (#49)
The notes command supports exporting of multiple authors from the
changelog entries. You can add more than one author to the changelog
entry by defining them asauthor: - John Smith <[email protected]> - John Doe <[email protected]>
- Option
--bump-version
to increase version manually
Include--bump-version=[MAJOR, MINOR, PATCH]
argument tosermverup
command to increase the version number regardless the release notes
changes. - Generate release notes for pre-releases
The flag--pre-release
, on the commandnotes
, generates the notes
of a release candidate. Release notes include the changes in between
releases - regular and candidate releases - while the release
candidate notes only include the latest changes since the previous
release. - Option to not cleanup on publishing
Runningpublish
with `--no-cleanup' option doesn't remove any
changelog entry from the repository. - Option for release candidates versions
Include a new argument tosemverup
to create pre-releases versions.
If the option--pre-release
is included and the current version is
not a release candidate, it will create a new pre-release version
based on files or--bump-version
argument. If the current version is
a release candidate, it will increase its pre-release part. For
example, in a repository with a bugfix changelog entry: -0.2.0
+
semverup --pre-release
=0.2.1-rc.1
-0.2.1-rc.1
+semverup --pre-release
=0.2.1-rc.2
When the version is a pre-release, and
--pre-release
is not specified, it will remove the pre-release part
and generate the final version. In a repository with changelog
entries: -0.2.2-rc.1
+semverup
=0.2.2
Bug fixes:
- Changelog valid filenames
Creating filename from the title could create invalid paths. This
commits change the way the filename is created from the title
removing many of the special chars. - Error removing changelog entries
Changelog entries that are processed while doing a release that is not
a release candidate were raising a Git error. - Ignore unreleased directory when publishing
Publish command continues the execution if the directory
releases/unreleased
doesn't exist. - Option to include branch in
publish
command
Include the--remote-branch <branch>
option inpublish
to push to
a specific remote branch. By default it ismaster
. - Invalid release candidate version number when adding new changes
semverup
was not increasing the correct version number when the old
version was a release candidate and a new changelog was included.
Before it increased0.0.5-rc.1
to0.0.5-rc.2
when a minor
changelog entry was added while it should be0.1.0-rc.1
.
Breaking changes:
- New categories definition (#55)
Previously, only thefixed
notes incremented thepatch
version,
and the other changes incremented MINOR. We updated this behavior.
From now on,changed
andremoved
entries increment major version.
added
,deprecated
,security
,performance
andother
increment
the minor version.Fixed
anddependency
increment the patch
version. If the version is 0.x.x new entries will upgrade minor
version at most.
Dependencies updateds:
- Update PyYAML version and drop Python 3.7
PyYAML dependency updated to support Python 3.10 and drop Python 3.7
support