Skip to content

Commit 03f4fc2

Browse files
committed
chore: prepare 7.1.0
1 parent d1be5b5 commit 03f4fc2

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 7.1.0
2+
* Support type narrowed `process.env`/record and remove unused type (#148)
3+
* Add support for `readonly T[]` generic use with `asEnum()`
4+
15
## 7.0.1
26
* Fix loose float and int parsing (PR #144)
37

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const PASSWORD = env.get('DB_PASSWORD')
6565
.asString();
6666

6767
// Read in a port (checks that PORT is in the range 0 to 65535)
68-
// Alternatively, use amdefault value of 5432 if PORT is not defined
68+
// Alternatively, use a default value of 5432 if PORT is not defined
6969
const PORT = env.get('PORT').default('5432').asPortNumber()
7070
```
7171

@@ -143,6 +143,7 @@ Contributions are welcomed and discussed in [CONTRIBUTING.md](CONTRIBUTING.md).
143143
* @itavy
144144
* @jerome-fox
145145
* @joh-klein
146+
* @Lioness100
146147
* @MikeyBurkman
147148
* @pepakriz
148149
* @rmblstrp

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "env-var",
3-
"version": "7.0.1",
3+
"version": "7.1.0",
44
"description": "Verification, sanitization, and type coercion for environment variables in Node.js",
55
"main": "env-var.js",
66
"typings": "env-var.d.ts",

0 commit comments

Comments
 (0)