1# Changelog
2
3## [1.2.0] - 2019-08-03
4
5### Added
6
7- Add `Must` helper to raise an error as panic. It can be used with `Load` and `OverLoad`.
8- Add more tests to be 100% coverage.
9- Add CHANGELOG
10- Add more OS for the test: OSX and Windows
11
12### Changed
13
14- Reduce complexity and improve source code for having `A+` score in [goreportcard](https://goreportcard.com/report/github.com/subosito/gotenv).
15- Updated README with mentions to all available functions
16
17### Removed
18
19- Remove `ErrFormat`
20- Remove `MustLoad` and `MustOverload`, replaced with `Must` helper.
21
22## [1.1.1] - 2018-06-05
23
24### Changed
25
26- Replace `os.Getenv` with `os.LookupEnv` to ensure that the environment variable is not set, by [radding](https://github.com/radding)
27
28## [1.1.0] - 2017-03-20
29
30### Added
31
32- Supports carriage return in env
33- Handle files with UTF-8 BOM
34
35### Changed
36
37- Whitespace handling
38
39### Fixed
40
41- Incorrect variable expansion
42- Handling escaped '$' characters
43
44## [1.0.0] - 2014-10-05
45
46First stable release.
47
48