Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
priitlatt committed Nov 7, 2024
1 parent 2b8b12c commit fc70e5d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 0.54.3
-------------

**Bugfixes**
- Support device class `APPLE_SILICON_MAC` on App Store Connect API [`Device`](https://developer.apple.com/documentation/appstoreconnectapi/device) responses. [PR #437](https://github.com/codemagic-ci-cd/cli-tools/pull/437)

Version 0.54.2
-------------

Expand Down
5 changes: 1 addition & 4 deletions src/codemagic/apple/resources/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,10 +272,7 @@ def is_compatible(self, profile_type: ProfileType) -> bool:
if profile_type.is_tvos_profile:
return self is DeviceClass.APPLE_TV
elif profile_type.is_macos_profile:
return self in (
DeviceClass.APPLE_SILICON_MAC,
DeviceClass.MAC,
)
return self is DeviceClass.MAC
else:
return self in (
DeviceClass.APPLE_VISION_PRO,
Expand Down

0 comments on commit fc70e5d

Please sign in to comment.