Skip to content

Commit

Permalink
Increase minimum supported platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Apr 13, 2024
1 parent 5aea781 commit 2bbd5aa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

- Remove deprecated `.base` property
- Increase the minimum supported Xcode version to 14.3
- Increase the minimum supported platforms to iOS 13.0, tvOS 13.0, macOS 10.15

## Align 3.1.0

Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import PackageDescription
let package = Package(
name: "Align",
platforms: [
.iOS(.v12),
.tvOS(.v12),
.macOS(.v10_14),
.iOS(.v13),
.tvOS(.v13),
.macOS(.v10_15),
],
products: [
.library(name: "Align", targets: ["Align"]),
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ The [**documentation**](https://kean-docs.github.io/align/documentation/align/)

## Requirements

| Align | Swift | Xcode | Platforms |
|----------------|-------------|-------------------|------------------------------------|
| Align 3.0 | Swift 5.6 | Xcode 13.3 | iOS 12.0 / tvOS 12.0 / macOS 10.14 |
| Align 2.0 | Swift 5.1 | Xcode 11.0 | iOS 11.0 / tvOS 11.0 / macOS 10.13 |
| Align | Swift | Xcode | Platforms |
|----------------|-------------|-------------------|----------------------------------|
| Align 3.2 | Swift 5.8 | Xcode 14.3 | iOS 13.0, tvOS 13.0, macOS 10.15 |
| Align 3.0 | Swift 5.6 | Xcode 13.3 | iOS 12.0, tvOS 12.0, macOS 10.14 |
| Align 2.0 | Swift 5.1 | Xcode 11.0 | iOS 11.0, tvOS 11.0, macOS 10.13 |

## Why Align

Expand Down

0 comments on commit 2bbd5aa

Please sign in to comment.