Skip to content

Commit 47c31de

Browse files
committed
fix: Synchronise the version with the NPM registry
1 parent 3315a4f commit 47c31de

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# [3.0.0](https://github.com/prantlf/asynctaskqueue.js/compare/v2.0.4...v3.0.0) (2022-06-05)
2+
3+
### Features
4+
5+
* Remove minified build output and generated documentation ([a5947dd](https://github.com/prantlf/asynctaskqueue.js/commit/a5947ddc98374da99237d6ecfdf44949a6e958ed))
6+
7+
### BREAKING CHANGES
8+
9+
* Minified build output and generated documentation has been removed from the source code repository. Instead of to files in this repository, refer to https://unpkg.com/asynctaskqueue.js@3.0.0/asynctaskqueue-min.js and https://prantlf.github.io/asynctaskqueue.js/.
10+
111
## [2.0.3](https://github.com/prantlf/asynctaskqueue.js/compare/v2.0.2...v2.0.3) (2019-09-22)
212

313
### Bug Fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
AsyncTaskQueue.js is a worker (function) queue executing the tasks asynchronously, which uses (deferred) promises to notify about the execution status.
88

9-
**Warning**: Minified build output and generated documentation has been removed from the source code repository. Instead of to files in this repository, refer to https://unpkg.com/asynctaskqueue.js@3.0.0/asynctaskqueue-min.js and https://prantlf.github.io/asynctaskqueue.js/.
9+
**Warning**: Minified build output and generated documentation has been removed from the source code repository. Instead of to files in this repository, refer to https://unpkg.com/asynctaskqueue.js@3.0.1/asynctaskqueue-min.js and https://prantlf.github.io/asynctaskqueue.js/.
1010

1111
## Contributing
1212

asynctaskqueue.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// # asynctaskqueue.js 3.0.0
1+
// # asynctaskqueue.js 3.0.1
22
//
33
// Repository: <a href="https://github.com/prantlf/asynctaskqueue.js">https://github.com/prantlf/asynctaskqueue.js</a><br>
44
// Copyright (c) 2014-2022 Ferdinand Prantl <prantlf@gmail.com><br>
@@ -324,7 +324,7 @@
324324

325325
});
326326

327-
Queue.version = "3.0.0";
327+
Queue.version = "3.0.1";
328328

329329
return Queue;
330330

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "asynctaskqueue.js",
3-
"version" : "3.0.0",
3+
"version" : "3.0.1",
44
"main" : "asynctaskqueue.js",
55
"keywords" : ["worker", "queue", "asynchronous", "server", "client", "browser"],
66
"ignore" : ["docs", "test", "*.yml", "*.map"]

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"repo" : "prantlf/asynctaskqueue.js",
66
"main" : "asynctaskqueue.js",
77
"scripts" : ["asynctaskqueue.js"],
8-
"version" : "3.0.0",
8+
"version" : "3.0.1",
99
"license" : "MIT"
1010
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "asynctaskqueue.js",
3-
"version": "2.0.3",
3+
"version": "3.0.0",
44
"description": "JavaScript worker queue to execute tasks asynchronously, based on (deferred) promises",
55
"homepage": "https://github.com/prantlf/asynctaskqueue.js",
66
"author": "Ferdinand Prantl <prantlf@gmail.com>",

0 commit comments

Comments
 (0)