Skip to content

Commit

Permalink
Bump version to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joaolfp committed Sep 24, 2023
1 parent 68044c9 commit d72e07a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## Version 1.4.0
**2023-09-23**

- 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.
- ViewState now requires iOS 12+, macOS 10.15+ and tvOS 12+.

## Version 1.3.3
**2023-09-07**

Expand Down
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,18 @@ final class ViewController: UIViewController {
### [Swift Package Manager (SPM)](https://swift.org/package-manager)

```swift
dependencies: [
.package(url: "https://github.com/joaolfp/ViewState.git", .upToNextMajor(from: "1.3.3"))
]
import PackageDescription
let package = Package(
name: "<Your Product Name>",
dependencies: [
.package(url: "https://github.com/heroesofcode/ViewState", .upToNextMajor(from: "1.4.0"))
],
targets: [
.target(
name: "<Your Target Name>",
dependencies: ["ViewState"]),
]
)
```

## Contributing
Expand Down

0 comments on commit d72e07a

Please sign in to comment.