Blazingly Fast 🚀 CLI tool for determining the next semantic version for a given repository based on conventional commits and git tags.
⚠️ This is in very early development. I would not recommend you integrate this tool into your project.
``` USAGE: conver [OPTIONS] [PATH]
ARGS:
OPTIONS: -f, --bump-files Bump the version files with the derived version -h, --help Print help information -r, --release Generate final release version -t, --tag Tag the current commit with the release version -v, --lead-v Add an optional leading v to the generated version i.e. (v2.1.3) -V, --version Print version information ```
conventional-semver-rs will look in the root of the repositories directory for a conventional_release.toml
file. This configuration will be applied when generating versions of updating version files.
If conventional_release.toml
is not found, a default configuration will be loaded.
```toml v = false
[commit_signature] name = "conventional-semver-rs" email = "conventional-semver-rs@github.com" ```
```toml v = false # Include optional prefix v in generated version
[commit_signature] name = "conventional-semver-rs" email = "conventional-semver-rs@github.com"
[[versionfiles]] v = true # Configure option prefix v for version file path = "version.txt" # Relative path to file versionprefix = "" # Token to match before the version version_postfix = "" # Token to match after the version
[[versionfiles]] v = false path = "Cargo.toml" versionprefix = "version = \"" version_postfix = "\"[^,]"
[[version_files]] preset = "package.json"
```
Pre-release versions are generated when the following conditions are true.
- The current commit is not tagged. (See Rebuilding Release Tags below.)
- The --release
option is not specified.
- Structure is {MAJOR}.{MINOR}.{PATCH}-{COMMITS_SINCE_TAG}-{COMMIT_HASH}
- Example: 0.3.0-2-g3229751
Release versions are generated when the either of the following conditions are true.
- The current commit is already tagged with a release version.
- The --release
option is specified.
- Structure is {MAJOR}.{MINOR}.{PATCH}
- Example: 0.3.0