Merge branch 'master' of github.com:poolifier/poolifier
[poolifier.git] / CHANGELOG.md
index 77bd77a69f9fca0824f824dbabe8b1f4099408b9..de0d866fc361a3a6c946db0b167f13e78a0e05ce 100644 (file)
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ## [Unreleased]
 
+## [2.6.26] - 2023-08-15
+
 ### Added
 
 - Add kill handler to worker options allowing to execute custom code when worker is killed.
@@ -729,15 +731,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ```js
 // Before
-const DynamicThreadPool = require("poolifier/lib/dynamic");
+const DynamicThreadPool = require('poolifier/lib/dynamic')
 // After
-const { DynamicThreadPool } = require("poolifier/lib/dynamic");
+const { DynamicThreadPool } = require('poolifier/lib/dynamic')
 ```
 
 But you should always prefer just using
 
 ```js
-const { DynamicThreadPool } = require("poolifier");
+const { DynamicThreadPool } = require('poolifier')
 ```
 
 #### New type definitions for input data and response