Skip to content

Commit d72e07a

Browse files
committed
Bump version to 1.4.0
1 parent 68044c9 commit d72e07a

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## Version 1.4.0
4+
**2023-09-23**
5+
6+
- Support for CocoaPods and Carthage has been obsoleted. No new releases will be available on those platforms, starting with 1.4.0. Please use the Swift Package Manager to depend on ViewState.
7+
- ViewState now requires iOS 12+, macOS 10.15+ and tvOS 12+.
8+
39
## Version 1.3.3
410
**2023-09-07**
511

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,18 @@ final class ViewController: UIViewController {
8585
### [Swift Package Manager (SPM)](https://swift.org/package-manager)
8686

8787
```swift
88-
dependencies: [
89-
.package(url: "https://github.com/joaolfp/ViewState.git", .upToNextMajor(from: "1.3.3"))
90-
]
88+
import PackageDescription
89+
let package = Package(
90+
name: "<Your Product Name>",
91+
dependencies: [
92+
.package(url: "https://github.com/heroesofcode/ViewState", .upToNextMajor(from: "1.4.0"))
93+
],
94+
targets: [
95+
.target(
96+
name: "<Your Target Name>",
97+
dependencies: ["ViewState"]),
98+
]
99+
)
91100
```
92101

93102
## Contributing

0 commit comments

Comments
 (0)