diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json
index cca72bfd..865c2aa2 100644
--- a/.github/release-please/manifest.json
+++ b/.github/release-please/manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.5.14"
+ ".": "0.5.15"
}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a044a39a..bf815754 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,38 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [0.5.15](https://github.com/poolifier/poolifier-web-worker/compare/v0.5.14...v0.5.15) (2025-10-17)
+
+### 🐞 Bug Fixes
+
+- potention race on circular buffer size
+ ([6a9fcd0](https://github.com/poolifier/poolifier-web-worker/commit/6a9fcd0e7fb6348f2cec8341070347f124a42d9f))
+
+### ✨ Polish
+
+- cleanup main deno.json
+ ([7bf4372](https://github.com/poolifier/poolifier-web-worker/commit/7bf4372742f5ab43198b9d988e4f6894bec4cc83))
+- cleanup type casting
+ ([6abbc70](https://github.com/poolifier/poolifier-web-worker/commit/6abbc70058e293f98fabde6ad11bf1a21dff35fb))
+
+### 🤖 Automation
+
+- **deps:** Bump actions/setup-node from 4 to 5
+ ([#105](https://github.com/poolifier/poolifier-web-worker/issues/105))
+ ([cb4aab3](https://github.com/poolifier/poolifier-web-worker/commit/cb4aab38abce29ea5bab1b2433b82c88b116277f))
+- **deps:** Bump actions/setup-node from 5 to 6
+ ([#109](https://github.com/poolifier/poolifier-web-worker/issues/109))
+ ([27b1db2](https://github.com/poolifier/poolifier-web-worker/commit/27b1db2bd28410ff5b975bf99f1e26a5a4f23ef3))
+- **deps:** Bump github/codeql-action from 3 to 4
+ ([#108](https://github.com/poolifier/poolifier-web-worker/issues/108))
+ ([54b815e](https://github.com/poolifier/poolifier-web-worker/commit/54b815ec96f090651264c55d3778d26b24ff580e))
+- **deps:** Bump sonarsource/sonarqube-scan-action from 5.3.0 to 5.3.1
+ ([#104](https://github.com/poolifier/poolifier-web-worker/issues/104))
+ ([f6a52c4](https://github.com/poolifier/poolifier-web-worker/commit/f6a52c4ee0049be84e00ef78985f9bff06e7219d))
+- **deps:** Bump sonarsource/sonarqube-scan-action from 5.3.1 to 6.0.0
+ ([#106](https://github.com/poolifier/poolifier-web-worker/issues/106))
+ ([257c4e8](https://github.com/poolifier/poolifier-web-worker/commit/257c4e80529095ac7aaa1cdb1f50735a1223ca0f))
+
## [0.5.14](https://github.com/poolifier/poolifier-web-worker/compare/v0.5.13...v0.5.14) (2025-08-26)
### 🐞 Bug Fixes
diff --git a/README.md b/README.md
index 7a2332db..5b3890bd 100644
--- a/README.md
+++ b/README.md
@@ -149,7 +149,7 @@ for more details**:
```js
-
+
```
```js
@@ -159,7 +159,7 @@ import {
DynamicThreadPool,
FixedThreadPool,
PoolEvents,
-} from 'https://cdn.jsdelivr.net/npm/poolifier-web-worker@0.5.14/browser/mod.js'
+} from 'https://cdn.jsdelivr.net/npm/poolifier-web-worker@0.5.15/browser/mod.js'
```
diff --git a/deno.json b/deno.json
index e5ad389c..5fb9c6cc 100644
--- a/deno.json
+++ b/deno.json
@@ -1,9 +1,11 @@
{
"name": "@poolifier/poolifier-web-worker",
- "version": "0.5.14",
+ "version": "0.5.15",
"exports": "./src/mod.ts",
"compilerOptions": {
- "lib": ["deno.worker"],
+ "lib": [
+ "deno.worker"
+ ],
"strict": true
},
"tasks": {
@@ -25,7 +27,9 @@
"documentation": "deno doc ./src/mod.ts"
},
"test": {
- "include": ["./tests/**/*.test.mjs"]
+ "include": [
+ "./tests/**/*.test.mjs"
+ ]
},
"fmt": {
"semiColons": false,
@@ -38,8 +42,18 @@
"@std/testing": "jsr:@std/testing@^1.0.15"
},
"publish": {
- "include": ["LICENSE", "README.md", "deno.json", "src/**/*.ts"]
+ "include": [
+ "LICENSE",
+ "README.md",
+ "deno.json",
+ "src/**/*.ts"
+ ]
},
- "exclude": ["./coverage", "./dist/browser", "./dist/esm", "./npm"],
+ "exclude": [
+ "./coverage",
+ "./dist/browser",
+ "./dist/esm",
+ "./npm"
+ ],
"lock": false
}
diff --git a/dist/package.json b/dist/package.json
index a0dab6f1..6d871993 100644
--- a/dist/package.json
+++ b/dist/package.json
@@ -1,6 +1,6 @@
{
"name": "poolifier-web-worker",
- "version": "0.5.14",
+ "version": "0.5.15",
"description": "poolifier-web-worker",
"repository": {
"type": "git",
diff --git a/examples/deno/javascript/deno.json b/examples/deno/javascript/deno.json
index a06a179a..4a698ae5 100644
--- a/examples/deno/javascript/deno.json
+++ b/examples/deno/javascript/deno.json
@@ -1,6 +1,6 @@
{
"imports": {
- "@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.5.14"
+ "@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.5.15"
},
"tasks": {
"start:dynamic": "deno run -A ./dynamicExample.js",
diff --git a/examples/deno/typescript/deno.json b/examples/deno/typescript/deno.json
index 90d94f4f..2c8e4a75 100644
--- a/examples/deno/typescript/deno.json
+++ b/examples/deno/typescript/deno.json
@@ -1,6 +1,6 @@
{
"imports": {
- "@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.5.14"
+ "@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.5.15"
},
"tasks": {
"start": "deno run -A ./pool.ts"
diff --git a/sonar-project.properties b/sonar-project.properties
index 4c1278b3..bc52c1bd 100644
--- a/sonar-project.properties
+++ b/sonar-project.properties
@@ -3,7 +3,7 @@ sonar.organization=poolifier
sonar.typescript.lcov.reportPaths=coverage/lcov.info
sonar.projectName=poolifier-web-worker
# x-release-please-start-version
-sonar.projectVersion=0.5.14
+sonar.projectVersion=0.5.15
# x-release-please-end
sonar.host.url=https://sonarcloud.io
sonar.sources=src
diff --git a/src/pools/version.ts b/src/pools/version.ts
index a4b4013e..a5c54d93 100644
--- a/src/pools/version.ts
+++ b/src/pools/version.ts
@@ -1,3 +1,3 @@
// x-release-please-start-version
-export const version = '0.5.14'
+export const version = '0.5.15'
// x-release-please-end