diff --git a/CHANGELOG.md b/CHANGELOG.md index fdd3555..46da7c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page. | Version | Date | Comment | | -------------- | -------------- | -------- | +| 4.11.6 | 2019-06-19 | `util` bug fix | | 4.11.5 | 2019-06-19 | `dockerAll()` bug fix | | 4.11.4 | 2019-06-17 | type definitions bug fix | | 4.11.3 | 2019-06-16 | `graphics()` optimization windows | diff --git a/docs/history.html b/docs/history.html index 90af90b..1ba3c42 100644 --- a/docs/history.html +++ b/docs/history.html @@ -83,6 +83,11 @@ + + 4.11.6 + 2019-06-19 + util bug fix + 4.11.5 2019-06-19 diff --git a/docs/index.html b/docs/index.html index a5047e1..80479df 100644 --- a/docs/index.html +++ b/docs/index.html @@ -168,7 +168,7 @@
systeminformation
-
Current Version: 4.11.5
+
Current Version: 4.11.6
diff --git a/lib/util.js b/lib/util.js index 43b983b..d4a2833 100644 --- a/lib/util.js +++ b/lib/util.js @@ -37,7 +37,7 @@ const execOptsWin = { windowsHide: true, maxBuffer: 1024 * 2000, encoding: 'UTF-8', - env: util._extend({}.process.env, { LANG: 'en_US.UTF-8' }) + env: util._extend({}, process.env, { LANG: 'en_US.UTF-8' }) };