diff --git a/CHANGELOG.md b/CHANGELOG.md index df03647..8162fa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 7.0.1 +* Fix loose float and int parsing (PR #144) + ## 7.0.0 (11/11/2020) * Drop support for Node.js 8 and 13 (support only current, active, and maintenance versions) * Improve support for browser usage (#138) diff --git a/README.md b/README.md index b9a07a3..3c47a25 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ You can also create your own custom accessor; refer to the ['extraAccessors' sec Logging is disabled by default in `env-var` to prevent accidental logging of secrets. -To enable logging, you need to create an `env-var` instance using the `from()` function that the API provides and pass in a logger. +To enable logging, you need to create an `env-var` instance using the `from()` function that the API provides and pass in a logger. - A built-in logger is available, but a custom logger is also supported. - Always exercise caution when logging environment variables! @@ -142,6 +142,7 @@ Contributions are welcomed and discussed in [CONTRIBUTING.md](CONTRIBUTING.md). * @hhravn * @ineentho * @itavy +* @jerome-fox * @joh-klein * @MikeyBurkman * @pepakriz diff --git a/package.json b/package.json index 41c8f74..065f0bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "env-var", - "version": "7.0.0", + "version": "7.0.1", "description": "Verification, sanitization, and type coercion for environment variables in Node.js", "main": "env-var.js", "typings": "env-var.d.ts",