From 5e6b574bfab3c59b22c139337e9388f72b6fe6c9 Mon Sep 17 00:00:00 2001 From: Bruce Adams Date: Sat, 10 Feb 2024 21:42:26 -0500 Subject: [PATCH] Unbreak building release artifacts! --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 34 +++++++++++++++++++++++++++++++++- wix/main.wxs | 4 ++-- 4 files changed, 40 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbb8591..f69a859 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 4.0.1 + +Unbreak building release artifacts! + # Version 4.0.0 - Upgrade to AWS SDK release (1.x) versions. diff --git a/Cargo.lock b/Cargo.lock index 2add5b6..af66773 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1136,7 +1136,7 @@ dependencies = [ [[package]] name = "query-rds-data" -version = "4.0.0" +version = "4.0.1" dependencies = [ "anyhow", "aws-config", diff --git a/Cargo.toml b/Cargo.toml index 02d81ca..dc588d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "query-rds-data" -version = "4.0.0" +version = "4.0.1" authors = ["Bruce Adams "] edition = "2021" categories = ["database", "command-line-utilities"] @@ -11,6 +11,12 @@ license = "Apache-2.0" readme = "README.md" repository = "https://github.com/bruceadams/query-rds-data" +[package.metadata.wix] +upgrade-guid = "64DEDA6E-4F29-4D84-89F1-5980100A2426" +path-guid = "075BF4CA-796D-4C0B-9581-16ED1E63B843" +license = false +eula = false + [dependencies] anyhow = "1.0.79" aws-config = "1.1.5" @@ -38,3 +44,29 @@ features = ["macros", "rt-multi-thread"] [dependencies.tracing-subscriber] features = ["env-filter"] version = "0.3.18" + +# The profile that 'cargo dist' will build with +[profile.dist] +inherits = "release" +lto = "thin" + +# Config for 'cargo dist' +[workspace.metadata.dist] +# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) +cargo-dist-version = "0.10.0" +# CI backends to support +ci = ["github"] +# The installers to generate for each app +installers = ["shell", "powershell", "npm", "homebrew", "msi"] +# A GitHub repo to push Homebrew formulas to +tap = "bruceadams/homebrew-utilities" +# Target platforms to build apps for (Rust target-triple syntax) +targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"] +# The archive format to use for windows builds (defaults .zip) +windows-archive = ".tar.gz" +# The archive format to use for non-windows builds (defaults .tar.xz) +unix-archive = ".tar.gz" +# Publish jobs to run in CI +publish-jobs = ["homebrew"] +# Publish jobs to run in CI +pr-run-mode = "plan" diff --git a/wix/main.wxs b/wix/main.wxs index ac8c3ec..dddbfa2 100644 --- a/wix/main.wxs +++ b/wix/main.wxs @@ -61,7 +61,7 @@ - +