forked from motdotla/dotenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add change log and license, update documentation
- Loading branch information
Max Beatty
committed
Oct 21, 2015
1 parent
129c825
commit 80488dd
Showing
3 changed files
with
82 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
This project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
|
||
## [2.0.0] - 2015-10-20 | ||
### Added | ||
- 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 | ||
- LICENSE to be more explicit about what was defined in `package.json`. Linked to from README | ||
- Testing nodejs v4 on travis-ci | ||
- added examples of how to use dotenv in different ways | ||
|
||
### Changed | ||
- README has shorter description not referencing ruby gem since we don't have or want feature parity | ||
|
||
### Removed | ||
- Variable expansion and escaping so environment variables are encouraged to be fully orthogonal | ||
|
||
## [1.2.0] - 2015-06-20 | ||
### Added | ||
- Preload hook to require dotenv without including it in your code | ||
|
||
### Changed | ||
- clarified license to be "BSD-2-Clause" in `package.json` | ||
|
||
### Fixed | ||
- retain spaces in string vars | ||
|
||
## [1.1.0] - 2015-03-31 | ||
### Added | ||
- Silent option to silence `console.log` when `.env` missing | ||
|
||
## [1.0.0] - 2015-03-13 | ||
### Removed | ||
- support for multiple `.env` files. should always use one `.env` file for the current environment | ||
|
||
[Unreleased]: https://github.com/motdotla/dotenv/compare/v2.0.0...HEAD | ||
[2.0.0]: https://github.com/motdotla/dotenv/compare/v1.2.0...v2.0.0 | ||
[1.2.0]: https://github.com/motdotla/dotenv/compare/v1.1.0...v1.2.0 | ||
[1.1.0]: https://github.com/motdotla/dotenv/compare/v1.0.0...v1.1.0 | ||
[1.0.0]: https://github.com/motdotla/dotenv/compare/v0.4.0...v1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Copyright (c) 2015, Scott Motte | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
* Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters