Skip to content

Commit b269012

Browse files
committed
Bump version to 1.3.0
1 parent 15236c1 commit b269012

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.3.0
4+
**2023-09-21**
5+
6+
- 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.
7+
- DataLife now requires iOS 12+, macOS 10.13+ and tvOS 12+.
8+
39
## Version 1.2.5
410
**2021-11-18**
511

README.md

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

6666
```swift
67-
dependencies: [
68-
.package(url: "https://github.com/joaolfp/DataLife.git", .upToNextMajor(from: "1.2.5"))
69-
]
67+
import PackageDescription
68+
let package = Package(
69+
name: "<Your Product Name>",
70+
dependencies: [
71+
.package(url: "https://github.com/heroesofcode/DataLife", .upToNextMajor(from: "1.3.0"))
72+
],
73+
targets: [
74+
.target(
75+
name: "<Your Target Name>",
76+
dependencies: ["DataLife"]),
77+
]
78+
)
7079
```
7180

7281
## Contributing

0 commit comments

Comments
 (0)