diff --git a/Cargo.lock b/Cargo.lock index 4f141a71..3a5dd6d2 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 597711d4..da22f58e 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 6bf5db9d..dbd33c9c 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 13fe9443..7d886c40 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 dca0c90e..ec8854e7 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 a2ae2e8a..e4613750 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 59ae45f1..73f5cbed 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 a459f507..e9b2348c 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 41a5dfc5..7c9f7664 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 1552d251..546a587b 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 1e5dd143..cb768cad 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 60ea81e1..0bb2e6b5 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 8d9d1e58..aaf79c65 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"