From 8f4c94912281e5a11eb6905538a56ed6ab7f51be Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 19 Jul 2023 15:12:22 +0200 Subject: [PATCH] chore: v2.6.18 --- 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 6ed75674..39c16889 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] +## [2.6.18] - 2023-07-19 + ### Changed - Code refactoring and cleanup for better maintainability and readability. Bundle size is a bit smaller. diff --git a/package.json b/package.json index e32811e7..71c0663e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "poolifier", - "version": "2.6.17", + "version": "2.6.18", "description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation", "license": "MIT", "main": "./lib/index.js", diff --git a/sonar-project.properties b/sonar-project.properties index a959a249..674ddd55 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -2,7 +2,7 @@ sonar.projectKey=pioardi_poolifier sonar.organization=pioardi sonar.javascript.lcov.reportPaths=coverage/lcov.info sonar.projectName=poolifier -sonar.projectVersion=2.6.17 +sonar.projectVersion=2.6.18 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 bef86c74..b6da6131 100644 --- a/src/pools/version.ts +++ b/src/pools/version.ts @@ -1 +1 @@ -export const version = '2.6.17' +export const version = '2.6.18' -- 2.34.1