Skip to content

Commit e09f979

Browse files
lucasfernog-crabnebulaindygreg
authored andcommitted
app-store-connect: add IosDistribution certificate type
1 parent 439c220 commit e09f979

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

app-store-connect/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Released on ReleaseDate.
99
* New APIs and CLI commands to: list capabilities with a bundle ID;
1010
list profiles associated with a bundle ID; get bundle ID associated with
1111
a profile; list certificates associated with a profile. (#164)
12+
* Added `IosDistribution` variant to `CertificateType` enum.
1213
* MSRV 1.70 -> 1.78.
1314
* `base64` 0.21 -> 0.22.
1415
* `env_logger` 0.10 -> 0.11.

app-store-connect/src/certs_api.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ pub enum CertificateType {
122122
Development,
123123
Distribution,
124124
DeveloperIdApplication,
125+
IosDistribution,
125126
}
126127

127128
impl std::fmt::Display for CertificateType {
@@ -130,6 +131,7 @@ impl std::fmt::Display for CertificateType {
130131
Self::Development => "DEVELOPMENT",
131132
Self::Distribution => "DISTRIBUTION",
132133
Self::DeveloperIdApplication => "DEVELOPER_ID_APPLICATION",
134+
Self::IosDistribution => "IOS_DISTRIBUTION",
133135
};
134136
write!(f, "{s}")
135137
}

0 commit comments

Comments
 (0)