File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Released on ReleaseDate.
9
9
* New APIs and CLI commands to: list capabilities with a bundle ID;
10
10
list profiles associated with a bundle ID; get bundle ID associated with
11
11
a profile; list certificates associated with a profile. (#164 )
12
+ * Added ` IosDistribution ` variant to ` CertificateType ` enum.
12
13
* MSRV 1.70 -> 1.78.
13
14
* ` base64 ` 0.21 -> 0.22.
14
15
* ` env_logger ` 0.10 -> 0.11.
Original file line number Diff line number Diff line change @@ -122,6 +122,7 @@ pub enum CertificateType {
122
122
Development ,
123
123
Distribution ,
124
124
DeveloperIdApplication ,
125
+ IosDistribution ,
125
126
}
126
127
127
128
impl std:: fmt:: Display for CertificateType {
@@ -130,6 +131,7 @@ impl std::fmt::Display for CertificateType {
130
131
Self :: Development => "DEVELOPMENT" ,
131
132
Self :: Distribution => "DISTRIBUTION" ,
132
133
Self :: DeveloperIdApplication => "DEVELOPER_ID_APPLICATION" ,
134
+ Self :: IosDistribution => "IOS_DISTRIBUTION" ,
133
135
} ;
134
136
write ! ( f, "{s}" )
135
137
}
You can’t perform that action at this time.
0 commit comments