Carbon v1.0.0-rc.6 Release Notes

Release Date: 2019-10-30 // over 4 years ago
  • ๐Ÿ›  Fix

    • Failed to link SwiftUI when launching app for iOS12 or lower (#63)

    ๐Ÿ’ฅ Breaking Chage

    • โฌ‡๏ธ Drop support for Swift5.0 and Xcode10 (#63)

Previous changes from v1.0.0-rc.5

  • โœจ Enhancement

    • โž• Add support for SwiftUI compatibility ๐ŸŽ‰ (#58)

      struct HelloMessage: Component, View { ...}struct ContentView: View { var body: some View { ScrollView { VStack { Text("GREET") .font(.title) .padding(.horizontal, 16) HelloMessage("World") .frame(height: 60) .background(Color.red) } } } }

    • โž• Add Group.init without elements (#50)

    ๐Ÿ’ฅ Breaking Changes

    • โž• Add Component.intrinsicContentSize(for:) to get intrinsic content size for content to infer size of the UIView in SwiftUI (#58)