Skip to content

Commit

Permalink
Unbreak building release artifacts!
Browse files Browse the repository at this point in the history
  • Loading branch information
bruceadams committed Feb 11, 2024
1 parent 5b986dd commit 5e6b574
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 4.0.1

Unbreak building release artifacts!

# Version 4.0.0

- Upgrade to AWS SDK release (1.x) versions.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

34 changes: 33 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "query-rds-data"
version = "4.0.0"
version = "4.0.1"
authors = ["Bruce Adams <[email protected]>"]
edition = "2021"
categories = ["database", "command-line-utilities"]
Expand All @@ -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"
Expand Down Expand Up @@ -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"
4 changes: 2 additions & 2 deletions wix/main.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<Product
Id='*'
Name='query-rds-data'
UpgradeCode='55B846C8-481D-4E72-897A-E48F6871134D'
UpgradeCode='64DEDA6E-4F29-4D84-89F1-5980100A2426'
Manufacturer='Bruce Adams'
Language='1033'
Codepage='1252'
Expand Down Expand Up @@ -110,7 +110,7 @@
-->

<Directory Id='Bin' Name='bin'>
<Component Id='Path' Guid='A8D6A69B-1F78-41EB-8C85-8D282EAF4112' KeyPath='yes'>
<Component Id='Path' Guid='075BF4CA-796D-4C0B-9581-16ED1E63B843' KeyPath='yes'>
<Environment
Id='PATH'
Name='PATH'
Expand Down

0 comments on commit 5e6b574

Please sign in to comment.