diff --git a/CHANGELOG.md b/CHANGELOG.md index 04fa44e..715a57e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Change Log +# [6.0.0](https://github.com/lucas34/SwiftQueue/tree/6.0.0) + +#### Breaking Changes + +##### Replace Reachability framework with NWPathMonitor (#406) + +Minimum version required has been updated +```asm +platforms: [ + .macOS(.v10_14), + .iOS(.v12), + .macCatalyst(.v13), + .tvOS(.v12), + .watchOS(.v5), +] +``` + +- Dependency over `Reachability` has been removed and replaced with `NWPathMonitor` +- WatchOS can now use `NetworkConstraint` + +Thanks, @GianniCarlo for the contribution 🎉 + +#### Core +- Remove empty files (#408) +- Update copyright (#410) +- Add test for network listener (#411) + # [5.1.0](https://github.com/lucas34/SwiftQueue/tree/5.1.0) #### Bug fix diff --git a/SwiftQueue.podspec b/SwiftQueue.podspec index 3295d63..436f6ef 100644 --- a/SwiftQueue.podspec +++ b/SwiftQueue.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SwiftQueue" - s.version = "5.1.0" + s.version = "6.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"