Skip to content

Commit

Permalink
Update Xcode to 15.2
Browse files Browse the repository at this point in the history
Required for #565.
  • Loading branch information
madsmtm committed Jan 22, 2024
1 parent 405d7a3 commit 4c23c00
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ jobs:
- lint

env:
DEVELOPER_DIR: /Applications/Xcode_15.1.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion crates/header-translator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fn main() -> Result<(), BoxError> {
})
.collect();

if sdks.len() != 8 {
if sdks.len() != 10 {
error!("should have one of each platform: {sdks:?}");
}

Expand Down
3 changes: 2 additions & 1 deletion crates/icrate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## icrate Unreleased - YYYY-MM-DD

### Changed
* Updated SDK from Xcode 15.0.1 to 15.1.
* Updated SDK from Xcode 15.0.1 to 15.2.

View the release notes to learn more details:
- [15.1](https://developer.apple.com/documentation/xcode-release-notes/xcode-15_1-release-notes)
- [15.2](https://developer.apple.com/documentation/xcode-release-notes/xcode-15_2-release-notes)
* Marked `NSView::isFlipped`, `NSView::convertRect_toView`,
`NSWindow::convertRectToScreen` and `NSWindow::convertPointFromScreen` as
safe.
Expand Down
9 changes: 4 additions & 5 deletions crates/icrate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@ documentation, see [the Rust docs](https://docs.rs/icrate/) for more details.

## Supported versions

These bindings are automatically generated from the SDKs in Xcode 15.1 (will be
periodically updated).

Currently supports:

- macOS: `10.12-14.2`
- iOS/iPadOS: `10.0-17.2` (WIP)
- tvOS: `10.0-17.2` (WIP)
- watchOS: `5.0-10.2` (WIP)
- visionOS: Not currently supported

These bindings are currently generated from the SDKs in Xcode 15.2.
The Xcode version will be periodically updated.

0 comments on commit 4c23c00

Please sign in to comment.