diff --git a/CHANGELOG.md b/CHANGELOG.md index cd7ecdfe..9eb661d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## [v1.4.1](https://github.com/lucas34/SwiftQueue/tree/1.4.1) + +#### Bug fix +- Fix an issue where a periodic job will not be re-scheduled #63 +- Validate dictionary args only if persistence is required (#61) + +#### Other changes +- Make unavailable methods crash if called #64 +- Raise warning if something went wrong during the deserialization (#58) + ## [v1.4.0](https://github.com/lucas34/SwiftQueue/tree/1.4.0) Develop 1.4.0 (#52) @@ -28,11 +38,11 @@ Develop 1.4.0 (#52) ## [v1.3.1](https://github.com/lucas34/SwiftQueue/tree/1.3.1) -- Fix crash in exponential retry. +- Fix crash in exponential retry - Fix exponential retry not reset after a success run ## [v1.3.0](https://github.com/lucas34/SwiftQueue/tree/1.3.0) -Develop 1.3.0 Re-write 90% of the code. (#22) +Develop 1.3.0 Re-write 90% of the code (#22) #### Breaking changes - Scheduling a job without a creator will throw an error (Assertion) @@ -52,7 +62,7 @@ Develop 1.3.0 Re-write 90% of the code. (#22) ## [v1.2.2](https://github.com/lucas34/SwiftQueue/tree/1.2.2) -- Add support for Swift Package Manager. +- Add support for Swift Package Manager ## [v1.2.1](https://github.com/lucas34/SwiftQueue/tree/1.2.1) @@ -67,7 +77,7 @@ Develop 1.3.0 Re-write 90% of the code. (#22) - Fix retention issue #### Project structure Changes -- Each constraints will be defined in it's own file. +- Each constraints will be defined in it's own file - Each job will own an instance of all the constrains #### Breaking changes @@ -97,4 +107,4 @@ Support all targets when using carthage ## [v1.0.0](https://github.com/lucas34/SwiftQueue/tree/1.0.0) -- First stable release. \ No newline at end of file +- First stable release \ No newline at end of file diff --git a/SwiftQueue.podspec b/SwiftQueue.podspec index 4f5200dc..602e3006 100644 --- a/SwiftQueue.podspec +++ b/SwiftQueue.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SwiftQueue" - s.version = "1.4.0" + s.version = "1.4.1" 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"