cargo-release icon indicating copy to clipboard operation
cargo-release copied to clipboard

Cargo subcommand `release`: everything about releasing a rust crate.

Results 82 cargo-release issues
Sort by recently updated
recently updated
newest added

{{tag_name}} doesn't work in pre-release-replacements with --no-tag, instead the literal text `{{tag_name}}` is substituted and no error or warning is displayed. The behavior I expected here is that `--no-tag` stops...

Just did a first-time release of a crate to crates.io: ``` $ cargo release --execute Release unleash-proxy 0.1.0? [y/N] y [2022-03-04T20:06:19Z INFO cargo_release::release] Publishing unleash-proxy Updating crates.io index Packaging unleash-proxy...

Successfully published but an error that prevented the changes being committed to the repo. This is my log: Uploading nextsv v0.4.0 (/home/circleci/project) [2022-07-31T18:06:11Z DEBUG cargo_release::cargo] Crate index update failed with...

[Workspace inheritance](https://github.com/rust-lang/cargo/issues/8415) was [stabilized](https://github.com/rust-lang/cargo/pull/10859) recently and set to be released in Rust version `1.64` on [September 22, 2022](https://forge.rust-lang.org/#current-release-versions). Workspace inheritance support is needed since `cargo-release` modifies the `version` field, which...

This PR adds some nicer configuration for the example automatic changelog: - Change to TOML non-inlined tables for easier readability - Automatically add all available sections recommended on https://keepachangelog.com -...

After #450, I tried putting `pre-release-replacements` in a `[package.metadata.release]` section for an individual package. It seems to work, but it looks like it doesn't display anything in the dry-run output:...

``` error: failed to publish to registry at https://crates.io Caused by: the remote server responded with an error (status 429 Too Many Requests): You have published too many crates in...

bug

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 4. Release notes Sourced from actions/setup-python's releases. v4.0.0 What's Changed Support for python-version-file input: #336 Example of usage: - uses: actions/setup-python@v4 with: python-version-file: '.python-version' #...

dependencies
github_actions

I was trying to release a new package without publishing. I set its version to `1.0.0` in the Cargo.toml, then called `cargo release 1.0.0`. That then proceeded to confirm I...

Lets have a single repo workspace with 3 crates as directories in that repository ``` ❯ tree -L 1 . ├── Cargo.lock ├── Cargo.toml ├── release.toml ├── the-lib/ ├── the-db/...