Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 0.19.1 #1206

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Nothing Yet!


# Version 0.19.1 (2024-07-12)

This is a minor release that makes cargo-dist build with versions of rustc older than 1.79.0 (as of this writing, the latest release). The previous cargo-dist release accidentally relied on the rustc's [new temporary lifetime extension features](https://blog.rust-lang.org/2024/06/13/Rust-1.79.0.html#extending-automatic-temporary-lifetime-extension), making us suddenly require bleeding edge rustc for no good reason.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

word minor here might be confusing but otherwise lgtm



# Version 0.19.0 (2024-07-11)

This release improves support for corporate networks, fixes a regression in the ssldotcom-windows-sign feature, and lands some more groundwork for future improvements.
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/axodotdev/cargo-dist"
homepage = "https://opensource.axo.dev/cargo-dist/"
version = "0.19.0"
version = "0.19.1"

[workspace.dependencies]
# intra-workspace deps (you need to bump these versions when you cut releases too!
cargo-dist-schema = { version = "=0.19.0", path = "cargo-dist-schema" }
axoproject = { version = "=0.19.0", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects"] }
cargo-dist-schema = { version = "=0.19.1", path = "cargo-dist-schema" }
axoproject = { version = "=0.19.1", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects"] }

# first-party deps
axocli = { version = "0.2.0" }
Expand Down
4 changes: 2 additions & 2 deletions cargo-dist/src/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -879,9 +879,9 @@ fn apply_dist_to_metadata(metadata: &mut toml_edit::Item, meta: &DistMetadata) {
})
.unwrap_or(false)
{
&Some(InstallPathStrategy::default_list())
Some(InstallPathStrategy::default_list())
} else {
install_path
install_path.clone()
};

apply_optional_value(
Expand Down
Loading