Skip to content

Commit

Permalink
Bump version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joaolfp committed Sep 21, 2023
1 parent 15236c1 commit b269012
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.3.0
**2023-09-21**

- Support for CocoaPods and Carthage has been obsoleted. No new releases will be available on those platforms, starting with 1.3.0. Please use the Swift Package Manager to depend on DataLife.
- DataLife now requires iOS 12+, macOS 10.13+ and tvOS 12+.

## Version 1.2.5
**2021-11-18**

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

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

## Contributing
Expand Down

0 comments on commit b269012

Please sign in to comment.