Skip to content

Commit

Permalink
Release 5.1.0 (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Nelaupe authored May 5, 2022
1 parent 16a15e3 commit 39edd52
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Change Log

# [5.1.0](https://github.com/lucas34/SwiftQueue/tree/5.1.0)

#### Bug fix

Allow user to specify enqueue DispatchQueue to fix multi-thread enqueue crash

```swift
SwiftQueueManagerBuilder(creator: creator)
.set(enqueueDispatcher: .main)
```

#### Breaking Changes
- 'JobListener' now has 'onJobScheduled' callback (#384)

#### New features
- Add Lambda Job (#382)

For simple job, instead of creating your own implementation of 'Job', you can use LambdaJob {}

#### Chore
- Update Swift (#397)


# [5.0.2](https://github.com/lucas34/SwiftQueue/tree/5.0.2)

#### Bug Fix
Expand Down
2 changes: 1 addition & 1 deletion SwiftQueue.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SwiftQueue"
s.version = "5.0.2"
s.version = "5.1.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"
Expand Down

0 comments on commit 39edd52

Please sign in to comment.