Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 993 Bytes

RELEASE.md

File metadata and controls

25 lines (17 loc) · 993 Bytes

RELEASE NOTES

1.0.1 - Catalyst Fix

  • Fix build issue where bitcode compile was happening for Catalyst target.
  • Bitcode compile is now deprecated. The build script disables it. This is in prep to remove all bitcode logic from the script in the next release.

1.0.0 - Platform Builds

  • Updated build script to allow building for single platform targets: macOS, iOS or tvOS. Specify with -p <platform> switch. Default build is for "all" as it has been.

    # Examples
    
    ./build.sh -p macos # Build only for macOS
    ./build.sh -p ios   # Build only for iOS
    ./build.sh -p tvos  # Build only for tvOS
    ./build.sh          # Build for all - macOS, iOS and tvOS
    
    # Disable Confirmation (auto-Yes)
    ./build.sh -y
  • Added examples apps for tvOS and macOS.

Image