Skip to content

Commit

Permalink
Update README and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Apr 13, 2024
1 parent 974b20c commit e853e08
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 4 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"])
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit e853e08

Please sign in to comment.