From b537ee9c5e0688123d228f7b0d80bcba516f55a3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 21 May 2024 22:25:22 +0200 Subject: [PATCH] chore: v4.0.11 --- CHANGELOG.md | 2 ++ jsr.json | 2 +- package.json | 2 +- sonar-project.properties | 2 +- src/pools/version.ts | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 956072b3..6fc51a92 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] +## [4.0.11] - 2024-05-21 + ### Changed - Switch to optimized circular buffer implementation to store task execution measurements. diff --git a/jsr.json b/jsr.json index 2e5e95b4..213b1e59 100644 --- a/jsr.json +++ b/jsr.json @@ -1,7 +1,7 @@ { "$schema": "https://jsr.io/schema/config-file.v1.json", "name": "@poolifier/poolifier", - "version": "4.0.10", + "version": "4.0.11", "exports": "./src/index.ts", "publish": { "include": ["LICENSE", "README.md", "jsr.json", "src/**/*.ts"] diff --git a/package.json b/package.json index fa276bb3..d562cda8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package", "name": "poolifier", - "version": "4.0.10", + "version": "4.0.11", "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool", "license": "MIT", "type": "module", diff --git a/sonar-project.properties b/sonar-project.properties index 82e1ce89..470c601a 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -3,7 +3,7 @@ sonar.organization=poolifier sonar.javascript.exclusions=lib/**/*.mjs sonar.javascript.lcov.reportPaths=coverage/lcov.info sonar.projectName=poolifier -sonar.projectVersion=4.0.10 +sonar.projectVersion=4.0.11 sonar.host.url=https://sonarcloud.io #sonar.sources=src sonar.sources=lib diff --git a/src/pools/version.ts b/src/pools/version.ts index 3aeb8a8f..287e10aa 100644 --- a/src/pools/version.ts +++ b/src/pools/version.ts @@ -1 +1 @@ -export const version = '4.0.10' +export const version = '4.0.11' -- 2.34.1