13 releases
Uses old Rust 2015
0.7.1 | Jul 17, 2020 |
---|---|
0.7.0 | Feb 13, 2019 |
0.6.1 | Mar 5, 2018 |
0.4.0 | Dec 28, 2016 |
0.3.5 | May 9, 2016 |
#33 in #changelog
119 downloads per month
29KB
680 lines
rusty-release
A command line tool to make a semi-automatic release of a cargo project.
You've to be explicit about the new version number by specifing which part of
the version number should be incremented (e.g. rusty-release minor
) and
you've to write the Changelog by yourself, rusty-release
will only put the
new version number at the top of the Changelog and open it.
Installation
$ cargo install rusty-release
The build binary will be located at ~/.cargo/bin/rusty-release
.
Usage
rusty-release
has to be called with a version (rusty-release <VERSION>
), where
<VERSION>
has to be either major
, minor
, patch
or current
. major/minor/patch
increment the appropriate part of the current version number and current
makes a
release with the current version number. So current
is most likely useful for the first,
initial release.
The release process:
-
Checks if the git working tree isn't dirty, that there's nothing staged and that the local and the remote git repositories are synchronized.
-
Runs the tests.
-
The current version is read from the
Cargo.toml
and incremented according to<VERSION>
and written back to theCargo.toml
. -
Builds a release.
-
If available, the changelog - with the new version added at the top - and a temporary file containing all commits from HEAD to the previous release are opened in the configured editor.
Every file which lower case base name is equal to
changelog
is considered as a changelog file. -
A git commit is created containing the changed and not ignored files with the configured commit message.
-
A git tag is created with the configured name.
-
The git commit and tag are pushed to the remote repository.
-
cargo publish
is called.
Configuration
If available, the configuration file .rusty-release.toml
is read from the home directory
and from the cargo project root directory (where the Cargo.toml
resides).
The current supported configuration (default configuration displayed) is:
# publish to crates.io
cargo_publish = true
# push to git remote repository
git_push = true
# string template for the creation of the commit message, currently the two
# placeholders '<PROJ_NAME>' - the name of the cargo project - and
# '<NEW_VERSION>' - the version of the release - are supported
commit_message = "<PROJ_NAME> <NEW_VERSION>"
# a string template like 'commit_message' supporting the same placeholders
tag_name = "v<NEW_VERSION>"
# the editor command for opening the changelog, for the best experience the
# editor command should be able to open multiple files in a split view,
# first the environment variables $EDITOR and $VISUAL are checked and if
# they aren't available then "gvim -o" is used
editor = "gvim -o"
Dependencies
~3–12MB
~143K SLoC