Skip to content

Commit eba176b

Browse files
committed
chore(release): 8.0.0
1 parent 2e9636a commit eba176b

File tree

3 files changed

+29
-13
lines changed

3 files changed

+29
-13
lines changed

CHANGELOG.md

+26-10
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
# Change Log
2-
All notable changes to this project will be documented in this file.
3-
This project adheres to [Semantic Versioning](http://semver.org/).
42

5-
## [Unreleased]
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
# [8.0.0](https://github.com/motdotla/dotenv/compare/v7.0.0...v8.0.0) (2019-05-02)
6+
7+
- Drop support for Node v6 (#392) ([2e9636a](https://github.com/motdotla/dotenv/commit/2e9636a)), closes [#392](https://github.com/motdotla/dotenv/issues/392)
8+
9+
### BREAKING CHANGES
10+
11+
- dropping Node v6 support because end-of-life
612

713
## [7.0.0] - 2019-03-12
814

@@ -30,7 +36,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
3036

3137
### Changed
3238

33-
- *Breaking:* drop support for Node v4 ([#304](https://github.com/motdotla/dotenv/pull/304))
39+
- _Breaking:_ drop support for Node v4 ([#304](https://github.com/motdotla/dotenv/pull/304))
3440

3541
## [5.0.0] - 2018-01-29
3642

@@ -42,27 +48,26 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4248

4349
### Changed
4450

45-
- *Breaking*: default `path` is now `path.resolve(process.cwd(), '.env')`
46-
- *Breaking*: does not write over keys already in `process.env` if the key has a falsy value
51+
- _Breaking_: default `path` is now `path.resolve(process.cwd(), '.env')`
52+
- _Breaking_: does not write over keys already in `process.env` if the key has a falsy value
4753
- using `const` and `let` instead of `var`
4854

4955
### Removed
5056

5157
- Testing against Node v7
5258

53-
5459
## [4.0.0] - 2016-12-23
60+
5561
### Changed
5662

5763
- Return Object with parsed content or error instead of false ([#165](https://github.com/motdotla/dotenv/pull/165)).
5864

59-
6065
### Removed
6166

6267
- `verbose` option removed in favor of returning result.
6368

64-
6569
## [3.0.0] - 2016-12-20
70+
6671
### Added
6772

6873
- `verbose` option will log any error messages. Off by default.
@@ -83,38 +88,49 @@ This project adheres to [Semantic Versioning](http://semver.org/).
8388
- `silent` option removed in favor of `verbose`
8489

8590
## [2.0.0] - 2016-01-20
91+
8692
### Added
93+
8794
- CHANGELOG to ["make it easier for users and contributors to see precisely what notable changes have been made between each release"](http://keepachangelog.com/). Linked to from README
8895
- LICENSE to be more explicit about what was defined in `package.json`. Linked to from README
8996
- Testing nodejs v4 on travis-ci
9097
- added examples of how to use dotenv in different ways
9198
- return parsed object on success rather than boolean true
9299

93100
### Changed
101+
94102
- README has shorter description not referencing ruby gem since we don't have or want feature parity
95103

96104
### Removed
105+
97106
- Variable expansion and escaping so environment variables are encouraged to be fully orthogonal
98107

99108
## [1.2.0] - 2015-06-20
109+
100110
### Added
111+
101112
- Preload hook to require dotenv without including it in your code
102113

103114
### Changed
115+
104116
- clarified license to be "BSD-2-Clause" in `package.json`
105117

106118
### Fixed
119+
107120
- retain spaces in string vars
108121

109122
## [1.1.0] - 2015-03-31
123+
110124
### Added
125+
111126
- Silent option to silence `console.log` when `.env` missing
112127

113128
## [1.0.0] - 2015-03-13
129+
114130
### Removed
131+
115132
- support for multiple `.env` files. should always use one `.env` file for the current environment
116133

117-
[Unreleased]: https://github.com/motdotla/dotenv/compare/v7.0.0...HEAD
118134
[7.0.0]: https://github.com/motdotla/dotenv/compare/v6.2.0...v7.0.0
119135
[6.2.0]: https://github.com/motdotla/dotenv/compare/v6.1.0...v6.2.0
120136
[6.1.0]: https://github.com/motdotla/dotenv/compare/v6.0.0...v6.1.0

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dotenv",
3-
"version": "7.0.0",
3+
"version": "8.0.0",
44
"description": "Loads environment variables from .env file",
55
"main": "lib/main.js",
66
"scripts": {
@@ -10,7 +10,7 @@
1010
"pretest": "npm run lint",
1111
"test": "tap tests/*.js --100",
1212
"prerelease": "npm test",
13-
"release": "standard-version --sign"
13+
"release": "standard-version"
1414
},
1515
"repository": {
1616
"type": "git",

0 commit comments

Comments
 (0)