From 04f996c103dc53d20781d7f94744c992ce4e8a7b Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 8 May 2024 12:21:40 +0200 Subject: [PATCH] chore: v4.0.3 --- 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 ab0615e1..66877534 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.3] - 2024-05-08 + ### Changed - Optimize task(s) stealing by dequeuing task(s) from the last prioritized bucket. diff --git a/jsr.json b/jsr.json index 0aa6e0f8..69f0d0c6 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.2", + "version": "4.0.3", "exports": "./src/index.ts", "publish": { "include": ["LICENSE", "README.md", "jsr.json", "src/**/*.ts"] diff --git a/package.json b/package.json index bc231c57..b78359df 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package", "name": "poolifier", - "version": "4.0.2", + "version": "4.0.3", "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 bf23cd22..f86da8b0 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.2 +sonar.projectVersion=4.0.3 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 1104f70f..c410f931 100644 --- a/src/pools/version.ts +++ b/src/pools/version.ts @@ -1 +1 @@ -export const version = '4.0.2' +export const version = '4.0.3' -- 2.34.1