Skip to content

Commit 39edd52

Browse files
author
Lucas Nelaupe
authored
Release 5.1.0 (#404)
1 parent 16a15e3 commit 39edd52

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

Diff for: CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Change Log
22

3+
# [5.1.0](https://github.com/lucas34/SwiftQueue/tree/5.1.0)
4+
5+
#### Bug fix
6+
7+
Allow user to specify enqueue DispatchQueue to fix multi-thread enqueue crash
8+
9+
```swift
10+
SwiftQueueManagerBuilder(creator: creator)
11+
.set(enqueueDispatcher: .main)
12+
```
13+
14+
#### Breaking Changes
15+
- 'JobListener' now has 'onJobScheduled' callback (#384)
16+
17+
#### New features
18+
- Add Lambda Job (#382)
19+
20+
For simple job, instead of creating your own implementation of 'Job', you can use LambdaJob {}
21+
22+
#### Chore
23+
- Update Swift (#397)
24+
25+
326
# [5.0.2](https://github.com/lucas34/SwiftQueue/tree/5.0.2)
427

528
#### Bug Fix

Diff for: SwiftQueue.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SwiftQueue"
3-
s.version = "5.0.2"
3+
s.version = "5.1.0"
44
s.summary = "SwiftQueue"
55
s.description = "Job Scheduler for IOS with Concurrent run, failure/retry, persistence, repeat, delay and more"
66
s.homepage = "https://github.com/lucas34/SwiftQueue"

0 commit comments

Comments
 (0)