From d8163b08686d39aca2a2c9896176ceede981672e Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 11 Dec 2023 20:19:48 +0100 Subject: [PATCH] chore: v3.0.11 --- CHANGELOG.md | 2 ++ package.json | 2 +- sonar-project.properties | 2 +- src/pools/version.ts | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a4b2b1d..50747dfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.11] - 2023-12-11 + ### Fixed - Ensure pool asynchronous resource properly track tasks execution diff --git a/package.json b/package.json index 47a7f9a1..e1d09f24 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package", "name": "poolifier", - "version": "3.0.10", + "version": "3.0.11", "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool", "license": "MIT", "main": "./lib/index.js", diff --git a/sonar-project.properties b/sonar-project.properties index 1c167aeb..c2f8183b 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -2,7 +2,7 @@ sonar.projectKey=poolifier_poolifier sonar.organization=poolifier sonar.javascript.lcov.reportPaths=./coverage/lcov.info sonar.projectName=poolifier -sonar.projectVersion=3.0.10 +sonar.projectVersion=3.0.11 sonar.host.url=https://sonarcloud.io sonar.sources=src sonar.tests=tests diff --git a/src/pools/version.ts b/src/pools/version.ts index ce339559..a2668644 100644 --- a/src/pools/version.ts +++ b/src/pools/version.ts @@ -1 +1 @@ -export const version = '3.0.10' +export const version = '3.0.11' -- 2.34.1