diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..67f8ffe --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,27 @@ +# Formatting 0.x + +## Formatting 0.2 + +*Apr 13, 2024* + +- Move previews to the same file as the library and leverage SwiftUI #preview +- Remove CocoaPods support +- Increase minimum supported Xcode version to 14.3 + +## Formatting 0.1.2 + +*Jun 24, 2022* + +- Fix build on macOS and add podspec file - [#4](https://github.com/kean/Formatting/pull/4), thanks to [Sergey Kazakov](https://github.com/KazaiMazai) + +## Formatting 0.1.1 + +*Apr 4, 2022* + +- Fix an issue with handling of characters consisting of more than one unicode scalars - [#3](https://github.com/kean/Formatting/issues/3) + +## Formatting 0.1 + +*May 31, 2021* + +Initial version diff --git a/Package.swift b/Package.swift index b2e8ab0..a30e683 100755 --- a/Package.swift +++ b/Package.swift @@ -5,10 +5,10 @@ import PackageDescription let package = Package( name: "Formatting", platforms: [ - .macOS(.v10_15), - .iOS(.v13), - .tvOS(.v13), - .watchOS(.v6) + .macOS(.v10_14), + .iOS(.v12), + .tvOS(.v12), + .watchOS(.v5) ], products: [ .library(name: "Formatting", targets: ["Formatting"]) diff --git a/README.md b/README.md index 3c2a2fb..2b37aff 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,12 @@ Result using standard `UILabel`: ![Screen Shot 2020-11-29 at 18 07 03](https://user-images.githubusercontent.com/1567433/100556269-29dc6380-326f-11eb-8afe-769d48706362.png) +## Minimum Requirements + +| Versio | Swift | Xcode | Platforms | +|-----------------|-----------|-------------|----------------------------------------------| +| Formatting 4.0 | Swift 5.8 | Xcode 14.3 | iOS 12.0, tvOS 12.0, watchOS 5.0, macOS 10.5 | + # License Formatting is available under the MIT license. See the LICENSE file for more info.