Skip to content

Commit

Permalink
chore(release): 1.23.1 [skip ci]
Browse files Browse the repository at this point in the history
## [1.23.1](v1.23.0...v1.23.1) (2021-05-03)

### Bug Fixes

* add return type for job.waitUntilFinished() ([59ede97](59ede97))
  • Loading branch information
semantic-release-bot committed May 3, 2021
1 parent 59ede97 commit ed35d24
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 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.23.1](https://github.com/taskforcesh/bullmq/compare/v1.23.0...v1.23.1) (2021-05-03)


### Bug Fixes

* add return type for job.waitUntilFinished() ([59ede97](https://github.com/taskforcesh/bullmq/commit/59ede976061a738503f70d9eb0c92a4b1d6ae4a3))

# [1.23.0](https://github.com/taskforcesh/bullmq/compare/v1.22.2...v1.23.0) (2021-04-30)


Expand Down
4 changes: 2 additions & 2 deletions docs/gitbook/api/bullmq.job.waituntilfinished.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Returns a promise the resolves when the job has finished. (completed or failed).
<b>Signature:</b>

```typescript
waitUntilFinished(queueEvents: QueueEvents, ttl?: number): Promise<any>;
waitUntilFinished(queueEvents: QueueEvents, ttl?: number): Promise<R>;
```

## Parameters
Expand All @@ -21,5 +21,5 @@ waitUntilFinished(queueEvents: QueueEvents, ttl?: number): Promise<any>;

<b>Returns:</b>

Promise&lt;any&gt;
Promise&lt;R&gt;

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.23.0",
"version": "1.23.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 ed35d24

Please sign in to comment.