Skip to content

Commit 98fe62e

Browse files
committed
Bump to version 1.0.4
Bump version so we can generate signed and notarized macOS binaries.
1 parent df2e9ca commit 98fe62e

5 files changed

Lines changed: 21 additions & 9 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
# we specify bash to get pipefail; it guards against the `curl` command
6767
# failing. otherwise `sh` won't catch that `curl` returned non-0
6868
shell: bash
69-
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/oxidecomputer/cargo-dist/releases/download/v1.0.1/dist-installer.sh | sh"
69+
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/oxidecomputer/cargo-dist/releases/download/v1.0.3/dist-installer.sh | sh"
7070
- name: Cache dist
7171
uses: actions/upload-artifact@v4
7272
with:
@@ -114,6 +114,11 @@ jobs:
114114
env:
115115
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
116116
BUILD_MANIFEST_NAME: target/distrib/${{ join(matrix.targets, '-') }}-dist-manifest.json
117+
CODESIGN_CERTIFICATE: ${{ secrets.CODESIGN_CERTIFICATE }}
118+
CODESIGN_CERTIFICATE_PASSWORD: ${{ secrets.CODESIGN_CERTIFICATE_PASSWORD }}
119+
CODESIGN_IDENTITY: ${{ secrets.CODESIGN_IDENTITY }}
120+
CODESIGN_NOTARIZATION_APPLE_ID: ${{ secrets.CODESIGN_NOTARIZATION_APPLE_ID }}
121+
CODESIGN_NOTARIZATION_PASSWORD: ${{ secrets.CODESIGN_NOTARIZATION_PASSWORD }}
117122
steps:
118123
- name: enable windows longpaths
119124
run: |

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,18 @@
22

33
Nothing Yet!
44

5+
# Version 1.0.4 (2025-07-02)
6+
7+
- Build dist with v1.0.3 for signed and notarized macOS binaries.
8+
59
# Version 1.0.3 (2025-07-02)
610

7-
- Fix macOS binary signing not triggering despite being enabled.
811
- Submit codesigned macOS binaries to Apple for notarization.
912

13+
## Fixes
14+
15+
- Fix macOS binary signing not triggering despite being enabled.
16+
1017
# Version 1.0.2 (2025-06-19)
1118

1219
## Fixes

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ edition = "2021"
1818
license = "MIT OR Apache-2.0"
1919
repository = "https://github.com/oxidecomputer/cargo-dist"
2020
homepage = "https://opensource.axo.dev/cargo-dist/"
21-
version = "1.0.3"
21+
version = "1.0.4"
2222
rust-version = "1.74"
2323

2424
[workspace.dependencies]
2525
# intra-workspace deps (you need to bump these versions when you cut releases too!
26-
dist-schema = { version = "=1.0.3", path = "cargo-dist-schema" }
27-
axoproject = { version = "=1.0.3", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] }
26+
dist-schema = { version = "=1.0.4", path = "cargo-dist-schema" }
27+
axoproject = { version = "=1.0.4", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] }
2828

2929
# vendored first-party deps
3030
axocli = { version = "0.2.0", path = "vendor/axocli" }

dist-workspace.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["cargo:."]
44
# Config for 'dist'
55
[dist]
66
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
7-
cargo-dist-version = "1.0.1"
7+
cargo-dist-version = "1.0.3"
88
# CI backends to support
99
ci = "github"
1010
# The installers to generate for each app

0 commit comments

Comments
 (0)