From bc4bc7cd0ceb6b5fc4259176d28cea69641f22a3 Mon Sep 17 00:00:00 2001 From: Lucas Nelaupe <7482647+lucas34@users.noreply.github.com> Date: Wed, 10 Jun 2020 02:38:51 +0800 Subject: [PATCH] Release 4.3.0 --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ SwiftQueue.podspec | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1ef4d11..ef32f2ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Change Log +## [4.3.0](https://github.com/lucas34/SwiftQueue/tree/4.3.0) + +#### Breaking Changes + +- JobBuilder method requireCharging(value: Bool) was renamed .requireCharging() (#311) +- JobBuilder method .persist(required: true) was renamed .persist() (#312) +- JobBuilder method .internet(atLeast: .any) is forbidden. It's already default behaviour (#329) +- Internet constraint cannot be used if Operation is running in main thread (#329) +- Logger jobId parameter function can be nil (#318) +- Remove V1 serialiser (#320) +- Remove JobCount() method that is relying on a deprecated method (#337) (#336) + +#### New features +- Add JobBuilder.copy() (#304) + +#### Chore +- Update to Swift 5.2 (#306) + +#### Internal changes +- Cleanup (#302) (#313) (#319) (#321) (#322) (#327) (#330) +- Constrains refactoring (#326) (#328) (#331) (#332) (#333) (#335) + +## Build +- Auto archive carthage build artifacts (#303) (#308) +- Update dependencies (#301) (#307) + ## [4.2.0](https://github.com/lucas34/SwiftQueue/tree/4.2.0) #### New features diff --git a/SwiftQueue.podspec b/SwiftQueue.podspec index ab62d8e0..83abb5c0 100644 --- a/SwiftQueue.podspec +++ b/SwiftQueue.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SwiftQueue" - s.version = "4.2.0" + s.version = "4.3.0" s.summary = "SwiftQueue" s.description = "Job Scheduler for IOS with Concurrent run, failure/retry, persistence, repeat, delay and more" s.homepage = "https://github.com/lucas34/SwiftQueue"