Skip to content

Commit

Permalink
chore(release): 1.20.1 [skip ci]
Browse files Browse the repository at this point in the history
## [1.20.1](v1.20.0...v1.20.1) (2021-04-22)

### Bug Fixes

* **worker:** make token optional in processor function fixes [#490](#490) ([3940bd7](3940bd7))
  • Loading branch information
semantic-release-bot committed Apr 22, 2021
1 parent 3940bd7 commit 77cc94b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/gitbook/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.20.1](https://github.com/taskforcesh/bullmq/compare/v1.20.0...v1.20.1) (2021-04-22)


### Bug Fixes

* **worker:** make token optional in processor function fixes [#490](https://github.com/taskforcesh/bullmq/issues/490) ([3940bd7](https://github.com/taskforcesh/bullmq/commit/3940bd71c6faf3bd5fce572b9c1f11cb5b5d2123))

# [1.20.0](https://github.com/taskforcesh/bullmq/compare/v1.19.3...v1.20.0) (2021-04-21)


Expand Down
2 changes: 1 addition & 1 deletion docs/gitbook/api/bullmq.processor.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ An async function that receives `Job`<!-- -->s and handles them.
<b>Signature:</b>

```typescript
export declare type Processor<T = any, R = any, N extends string = string> = (job: Job<T, R, N>, token: string) => Promise<R>;
export declare type Processor<T = any, R = any, N extends string = string> = (job: Job<T, R, N>, token?: string) => Promise<R>;
```
<b>References:</b> [Job](./bullmq.job.md)

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bullmq",
"version": "1.20.0",
"version": "1.20.1",
"description": "Queue for messages and jobs based on Redis",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 77cc94b

Please sign in to comment.