X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=CHANGELOG.md;h=02624b45619c05a14917e0d3aa1fadc5e716d53c;hb=b9cca0059334f11740d3dfbc7bc07cd4432d1af4;hp=8479f0429b42ef98a0bdcfd38917728cda09f576;hpb=fa0f5b28a536f2bc5ebe395a0bac90b8a35d149e;p=poolifier.git diff --git a/CHANGELOG.md b/CHANGELOG.md index 8479f042..02624b45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,18 +15,18 @@ We changed some internal structures, but you shouldn't be too affected by them a ```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') ``` -#### Internal (protected) methods has renamed +#### Internal (protected) methods renaming Those methods are not intended to be used from final users