From 6570be2bfb0fb9fdf7c96b885c63108c079ff7cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 14:14:13 +0200 Subject: [PATCH] release: apply version updates from current changes (#51) Co-authored-by: lucasfernog-crabnebula --- .changes/codesign-frameworks-binaries.md | 5 ----- .changes/deb-uid-0.md | 5 ----- .changes/fix-path-not-exist-error.md | 5 ----- .changes/http_proxy.md | 5 ----- .changes/mac-notarytool-team-id.md | 5 ----- .changes/remove-bundler-xattr.md | 5 ----- crates/packager/CHANGELOG.md | 9 +++++++++ crates/packager/Cargo.toml | 2 +- 8 files changed, 10 insertions(+), 31 deletions(-) delete mode 100644 .changes/codesign-frameworks-binaries.md delete mode 100644 .changes/deb-uid-0.md delete mode 100644 .changes/fix-path-not-exist-error.md delete mode 100644 .changes/http_proxy.md delete mode 100644 .changes/mac-notarytool-team-id.md delete mode 100644 .changes/remove-bundler-xattr.md diff --git a/.changes/codesign-frameworks-binaries.md b/.changes/codesign-frameworks-binaries.md deleted file mode 100644 index 52786eb8..00000000 --- a/.changes/codesign-frameworks-binaries.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"cargo-packager": patch ---- - -Code sign binaries and frameworks on macOS. diff --git a/.changes/deb-uid-0.md b/.changes/deb-uid-0.md deleted file mode 100644 index 38960c96..00000000 --- a/.changes/deb-uid-0.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"cargo-packager": "patch" ---- - -Set `root` as the owner of control files and package files in `deb` package. diff --git a/.changes/fix-path-not-exist-error.md b/.changes/fix-path-not-exist-error.md deleted file mode 100644 index 6179c927..00000000 --- a/.changes/fix-path-not-exist-error.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"cargo-packager": patch ---- - -Fixed an error message that the source path does not exist when packaging .app diff --git a/.changes/http_proxy.md b/.changes/http_proxy.md deleted file mode 100644 index 5c2a319c..00000000 --- a/.changes/http_proxy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"cargo-packager": patch ---- - -Read `HTTP_PROXY` env var when downloading resources. diff --git a/.changes/mac-notarytool-team-id.md b/.changes/mac-notarytool-team-id.md deleted file mode 100644 index 5882be9c..00000000 --- a/.changes/mac-notarytool-team-id.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"cargo-packager": minor ---- - -Read the `APPLE_TEAM_ID` environment variable for macOS notarization arguments. \ No newline at end of file diff --git a/.changes/remove-bundler-xattr.md b/.changes/remove-bundler-xattr.md deleted file mode 100644 index 9f08e10e..00000000 --- a/.changes/remove-bundler-xattr.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"cargo-packager": patch ---- - -Remove extended attributes on the macOS app bundle using `xattr -cr $PATH`. diff --git a/crates/packager/CHANGELOG.md b/crates/packager/CHANGELOG.md index dc988f6d..1db9c1e1 100644 --- a/crates/packager/CHANGELOG.md +++ b/crates/packager/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[0.3.0] + +- [`65b8c20`](https://www.github.com/crabnebula-dev/cargo-packager/commit/65b8c20a96877038daa4907b80cd96f96e0bfe33)([#54](https://www.github.com/crabnebula-dev/cargo-packager/pull/54)) Code sign binaries and frameworks on macOS. +- [`7ef6b7c`](https://www.github.com/crabnebula-dev/cargo-packager/commit/7ef6b7c0186e79243240cb2d1a1846fda41a1b54)([#50](https://www.github.com/crabnebula-dev/cargo-packager/pull/50)) Set `root` as the owner of control files and package files in `deb` package. +- [`8cc5b05`](https://www.github.com/crabnebula-dev/cargo-packager/commit/8cc5b05eb3eb124b385d406329eee379349faa86)([#53](https://www.github.com/crabnebula-dev/cargo-packager/pull/53)) Fixed an error message that the source path does not exist when packaging .app +- [`274a6be`](https://www.github.com/crabnebula-dev/cargo-packager/commit/274a6bec553f273934347a18e0d6e2e1ec61bbeb)([#49](https://www.github.com/crabnebula-dev/cargo-packager/pull/49)) Read `HTTP_PROXY` env var when downloading resources. +- [`6ed1312`](https://www.github.com/crabnebula-dev/cargo-packager/commit/6ed1312926d70cf449e7beddacb56a17e51a25ac)([#52](https://www.github.com/crabnebula-dev/cargo-packager/pull/52)) Read the `APPLE_TEAM_ID` environment variable for macOS notarization arguments. +- [`65b8c20`](https://www.github.com/crabnebula-dev/cargo-packager/commit/65b8c20a96877038daa4907b80cd96f96e0bfe33)([#54](https://www.github.com/crabnebula-dev/cargo-packager/pull/54)) Remove extended attributes on the macOS app bundle using `xattr -cr $PATH`. + ## \[0.2.0] - [`dde1ab3`](https://www.github.com/crabnebula-dev/cargo-packager/commit/dde1ab34b59ee614fc24e47a5caa8ebc04d92a08)([#43](https://www.github.com/crabnebula-dev/cargo-packager/pull/43)) Remove the deprecated `cargo-packager-config` dependency. diff --git a/crates/packager/Cargo.toml b/crates/packager/Cargo.toml index b1a57c69..808901d7 100644 --- a/crates/packager/Cargo.toml +++ b/crates/packager/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-packager" -version = "0.2.0" +version = "0.3.0" description = "Rust executable packager and bundler CLI and library." authors = [ "CrabNebula Ltd.",