From d6b37fd6666b449b8bfa1181a7d7b11e51352844 Mon Sep 17 00:00:00 2001 From: Lucas Nelaupe Date: Sun, 18 Oct 2020 11:19:11 +0800 Subject: [PATCH] Release 5.0.0 (#358) --- CHANGELOG.md | 22 +++++++++++++++++++++- SwiftQueue.podspec | 2 +- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef32f2ad..df9c4e04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,29 @@ # Change Log -## [4.3.0](https://github.com/lucas34/SwiftQueue/tree/4.3.0) +# [5.0.0](https://github.com/lucas34/SwiftQueue/tree/5.0.0) + +### Warning: This version is incompatible with 4.X +If you are using serialised task. After updating, the library will not be able to deserialised the task saved with version 4.X + +#### New features +You can now add your own constraint dynamically + +- Dynamic constraint feature (#310) +- Add custom constraint (#343) #### Breaking Changes +- Rename NoSerialiser to NoPersister (#341) + +#### Chore +- Bump Reachability (#354) + +#### Internal changes +- Cleanup (#342) (#347) (#353) (#356) (#357) +- Dynamic constraint feature (#310) +## [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) diff --git a/SwiftQueue.podspec b/SwiftQueue.podspec index 83abb5c0..1129c5db 100644 --- a/SwiftQueue.podspec +++ b/SwiftQueue.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SwiftQueue" - s.version = "4.3.0" + s.version = "5.0.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"