From 703362f818272d43b3844105863739bcb6f1a11a Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Tue, 16 Jan 2024 20:59:31 -0800 Subject: [PATCH] workspace: perform releases --- Cargo.lock | 12 ++++++------ app-store-connect/CHANGELOG.md | 4 ++++ app-store-connect/Cargo.toml | 2 +- apple-bundles/CHANGELOG.md | 4 ++++ apple-bundles/Cargo.toml | 2 +- apple-codesign/CHANGELOG.md | 4 ++++ apple-codesign/Cargo.toml | 10 +++++----- apple-flat-package/CHANGELOG.md | 4 ++++ apple-flat-package/Cargo.toml | 6 +++--- apple-xar/CHANGELOG.md | 4 ++++ apple-xar/Cargo.toml | 2 +- cpio-archive/CHANGELOG.md | 4 ++++ cpio-archive/Cargo.toml | 2 +- 13 files changed, 42 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4f141a713..3a5dd6d24 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -131,7 +131,7 @@ dependencies = [ [[package]] name = "app-store-connect" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "base64", @@ -165,7 +165,7 @@ dependencies = [ [[package]] name = "apple-bundles" -version = "0.18.0" +version = "0.19.0" dependencies = [ "anyhow", "plist", @@ -176,7 +176,7 @@ dependencies = [ [[package]] name = "apple-codesign" -version = "0.26.0" +version = "0.27.0" dependencies = [ "anyhow", "app-store-connect", @@ -281,7 +281,7 @@ dependencies = [ [[package]] name = "apple-flat-package" -version = "0.17.0" +version = "0.18.0" dependencies = [ "apple-xar", "cpio-archive", @@ -303,7 +303,7 @@ dependencies = [ [[package]] name = "apple-xar" -version = "0.17.0" +version = "0.18.0" dependencies = [ "base64", "bcder", @@ -1093,7 +1093,7 @@ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" [[package]] name = "cpio-archive" -version = "0.8.0" +version = "0.9.0" dependencies = [ "chrono", "is_executable", diff --git a/app-store-connect/CHANGELOG.md b/app-store-connect/CHANGELOG.md index 597711d41..da22f58e5 100644 --- a/app-store-connect/CHANGELOG.md +++ b/app-store-connect/CHANGELOG.md @@ -6,6 +6,10 @@ Released on ReleaseDate. +## 0.5.0 + +Released on 2024-01-17. + ## 0.4.0 Released on 2023-11-15. diff --git a/app-store-connect/Cargo.toml b/app-store-connect/Cargo.toml index 6bf5db9d2..dbd33c9c7 100644 --- a/app-store-connect/Cargo.toml +++ b/app-store-connect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "app-store-connect" -version = "0.4.0" +version = "0.5.0" edition = "2021" rust-version = "1.70" license = "Apache-2.0 OR MIT" diff --git a/apple-bundles/CHANGELOG.md b/apple-bundles/CHANGELOG.md index 13fe94434..7d886c400 100644 --- a/apple-bundles/CHANGELOG.md +++ b/apple-bundles/CHANGELOG.md @@ -6,6 +6,10 @@ Released on ReleaseDate. +## 0.19.0 + +Released on 2024-01-17. + ## 0.18.0 Released on 2023-11-06. diff --git a/apple-bundles/Cargo.toml b/apple-bundles/Cargo.toml index dca0c90e9..ec8854e74 100644 --- a/apple-bundles/Cargo.toml +++ b/apple-bundles/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apple-bundles" -version = "0.18.0" +version = "0.19.0" authors = ["Gregory Szorc "] edition = "2021" rust-version = "1.70" diff --git a/apple-codesign/CHANGELOG.md b/apple-codesign/CHANGELOG.md index a2ae2e8a6..e46137508 100644 --- a/apple-codesign/CHANGELOG.md +++ b/apple-codesign/CHANGELOG.md @@ -6,6 +6,10 @@ Released on ReleaseDate. +## 0.27.0 + +Released on 2024-01-17. + * Published a [GitHub Action for code signing and notarization](https://github.com/marketplace/actions/apple-code-signing) and wrote project documentation for how to use it. (#6) diff --git a/apple-codesign/Cargo.toml b/apple-codesign/Cargo.toml index 59ae45f1b..73f5cbedc 100644 --- a/apple-codesign/Cargo.toml +++ b/apple-codesign/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apple-codesign" -version = "0.26.0" +version = "0.27.0" authors = ["Gregory Szorc "] edition = "2021" rust-version = "1.70" @@ -88,20 +88,20 @@ zip_structs = "0.2.1" [dependencies.app-store-connect] path = "../app-store-connect" -version = "0.4.0" +version = "0.5.0" optional = true [dependencies.apple-bundles] path = "../apple-bundles" -version = "0.18.0" +version = "0.19.0" [dependencies.apple-flat-package] path = "../apple-flat-package" -version = "0.17.0" +version = "0.18.0" [dependencies.apple-xar] path = "../apple-xar" -version = "0.17.0" +version = "0.18.0" [target.'cfg(target_os = "macos")'.dependencies] security-framework = { version = "2.9.2", features = ["OSX_10_12"] } diff --git a/apple-flat-package/CHANGELOG.md b/apple-flat-package/CHANGELOG.md index a459f507a..e9b2348c9 100644 --- a/apple-flat-package/CHANGELOG.md +++ b/apple-flat-package/CHANGELOG.md @@ -6,6 +6,10 @@ Released on ReleaseDate. +## 0.18.0 + +Released on 2024-01-17. + ## 0.17.0 * scroll 0.11 -> 0.12. diff --git a/apple-flat-package/Cargo.toml b/apple-flat-package/Cargo.toml index 41a5dfc57..7c9f7664d 100644 --- a/apple-flat-package/Cargo.toml +++ b/apple-flat-package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apple-flat-package" -version = "0.17.0" +version = "0.18.0" authors = ["Gregory Szorc "] edition = "2021" rust-version = "1.70" @@ -20,8 +20,8 @@ thiserror = "1.0.56" [dependencies.apple-xar] path = "../apple-xar" -version = "0.17.0" +version = "0.18.0" [dependencies.cpio-archive] path = "../cpio-archive" -version = "0.8.0" +version = "0.9.0" diff --git a/apple-xar/CHANGELOG.md b/apple-xar/CHANGELOG.md index 1552d251f..546a587b9 100644 --- a/apple-xar/CHANGELOG.md +++ b/apple-xar/CHANGELOG.md @@ -6,6 +6,10 @@ Released on ReleaseDate. +## 0.18.0 + +Released on 2024-01-17. + * scroll 0.11 -> 0.12. ## 0.17.0 diff --git a/apple-xar/Cargo.toml b/apple-xar/Cargo.toml index 1e5dd1433..cb768cadb 100644 --- a/apple-xar/Cargo.toml +++ b/apple-xar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apple-xar" -version = "0.17.0" +version = "0.18.0" authors = ["Gregory Szorc "] edition = "2021" rust-version = "1.70" diff --git a/cpio-archive/CHANGELOG.md b/cpio-archive/CHANGELOG.md index 60ea81e13..0bb2e6b51 100644 --- a/cpio-archive/CHANGELOG.md +++ b/cpio-archive/CHANGELOG.md @@ -6,6 +6,10 @@ Released on ReleaseDate. +## 0.9.0 + +Released on 2024-01-17. + ## 0.8.0 Released on 2023-11-06. diff --git a/cpio-archive/Cargo.toml b/cpio-archive/Cargo.toml index 8d9d1e585..aaf79c651 100644 --- a/cpio-archive/Cargo.toml +++ b/cpio-archive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cpio-archive" -version = "0.8.0" +version = "0.9.0" authors = ["Gregory Szorc "] edition = "2021" license = "MPL-2.0"