Skip to content

Commit 83c7321

Browse files
committed
fix: Synchronise the version with the NPM registry II
1 parent 47c31de commit 83c7321

7 files changed

+261
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [3.0.1](https://github.com/prantlf/asynctaskqueue.js/compare/v3.0.0...v3.0.1) (2022-06-05)
2+
3+
### Bug Fixes
4+
5+
* Synchronise the version with the NPM registry ([47c31de](https://github.com/prantlf/asynctaskqueue.js/commit/47c31deb059d2a5878f8253bad35104763799fc3))
6+
17
# [3.0.0](https://github.com/prantlf/asynctaskqueue.js/compare/v2.0.4...v3.0.0) (2022-06-05)
28

39
### Features

README.md

+1-1
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/[email protected].1/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/[email protected].2/asynctaskqueue-min.js and https://prantlf.github.io/asynctaskqueue.js/.
1010

1111
## Contributing
1212

asynctaskqueue.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// # asynctaskqueue.js 3.0.1
1+
// # asynctaskqueue.js 3.0.2
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 <[email protected]><br>
@@ -324,7 +324,7 @@
324324

325325
});
326326

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

329329
return Queue;
330330

bower.json

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

component.json

+1-1
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.1",
8+
"version" : "3.0.2",
99
"license" : "MIT"
1010
}

package.json

+18-1
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
"description": "JavaScript worker queue to execute tasks asynchronously, based on (deferred) promises",
55
"homepage": "https://github.com/prantlf/asynctaskqueue.js",
66
"author": "Ferdinand Prantl <[email protected]>",
@@ -33,10 +33,27 @@
3333
"web:sync": "cp -r docs/* ../asynctaskqueue.js-pages/",
3434
"web:deploy": "cd ../asynctaskqueue.js-pages && git add . && git commit -m 'Deploy site updates' && git push origin gh-pages"
3535
},
36+
"release": {
37+
"plugins": [
38+
"@semantic-release/commit-analyzer",
39+
"@semantic-release/release-notes-generator",
40+
"@semantic-release/changelog",
41+
"@semantic-release/npm",
42+
[
43+
"@semantic-release/github",
44+
{
45+
"failComment": false
46+
}
47+
],
48+
"@semantic-release/git"
49+
]
50+
},
3651
"devDependencies": {
3752
"@prantlf/dom-lite": "^21.3.0",
3853
"@prantlf/faucet": "^1.0.1",
3954
"@prantlf/requirejs": "^3.0.0",
55+
"@semantic-release/changelog": "^6.0.1",
56+
"@semantic-release/git": "^10.0.1",
4057
"docco": "^0.9.1",
4158
"esbuild": "^0.14.42",
4259
"jquery": "^3.6.0",

0 commit comments

Comments
 (0)