Skip to content

Releases: brycebostwick/XcodePluginLoader

Xcode 16.0b1 Compatbility

11 Jun 00:12
3ec7ac1
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.1...v1.0.2

v1.0.1

11 Mar 14:47
399bba6
Compare
Choose a tag to compare

Switches to using ProductBuildVersion for Xcode 15.3+ compatibility checks ( #1 , thanks @davedelong !)

If you're using v1.0.0 of this project, you'll need to replace DTXcodeBuildCompatibleVersions in your plugin's Info.plist with some variant of:

<key>CompatibleProductBuildVersions</key>
<array>
    <string>15E5178i</string> <!-- 15.3b1 -->
    <string>15E5188j</string> <!-- 15.3b2 -->
    <string>15E5194e</string> <!-- 15.3b3 -->
    <string>15E5202a</string> <!-- 15.3rc1 -->
    <string>15E204a</string>  <!-- 15.3, 15.3rc2 -->
</array>

v1.0.0

22 Feb 02:46
Compare
Choose a tag to compare

Initial release.

See README.md for installation instructions.