From 206a35192f237de931242b95553ec8d2cf31b5d8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 16 Jul 2023 18:42:33 +0200 Subject: [PATCH] chore: v2.6.17 --- 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 fdf1273b..63c639d9 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.17] - 2023-07-16 + ### Added - Add `listTaskFunctions()` method to worker class. diff --git a/package.json b/package.json index 08343436..746c67fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "poolifier", - "version": "2.6.16", + "version": "2.6.17", "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 bd7ac5ec..a959a249 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.16 +sonar.projectVersion=2.6.17 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 c97f3d12..bef86c74 100644 --- a/src/pools/version.ts +++ b/src/pools/version.ts @@ -1 +1 @@ -export const version = '2.6.16' +export const version = '2.6.17' -- 2.34.1