CHANGELOG.md (1330B)
1 # Changelog 2 3 ## [1.4.0] - 2022-06-02 4 5 ### Added 6 7 - Add `Marshal` and `Unmarshal` helpers 8 9 ### Changed 10 11 - The CI will now run a linter and the tests on PRs. 12 13 ## [1.3.0] - 2022-05-23 14 15 ### Added 16 17 - Support = within double-quoted strings 18 - Add support for multiline values 19 20 ### Changed 21 22 - `OverLoad` prefer environment variables over local variables 23 24 ## [1.2.0] - 2019-08-03 25 26 ### Added 27 28 - Add `Must` helper to raise an error as panic. It can be used with `Load` and `OverLoad`. 29 - Add more tests to be 100% coverage. 30 - Add CHANGELOG 31 - Add more OS for the test: OSX and Windows 32 33 ### Changed 34 35 - Reduce complexity and improve source code for having `A+` score in [goreportcard](https://goreportcard.com/report/github.com/subosito/gotenv). 36 - Updated README with mentions to all available functions 37 38 ### Removed 39 40 - Remove `ErrFormat` 41 - Remove `MustLoad` and `MustOverload`, replaced with `Must` helper. 42 43 ## [1.1.1] - 2018-06-05 44 45 ### Changed 46 47 - Replace `os.Getenv` with `os.LookupEnv` to ensure that the environment variable is not set, by [radding](https://github.com/radding) 48 49 ## [1.1.0] - 2017-03-20 50 51 ### Added 52 53 - Supports carriage return in env 54 - Handle files with UTF-8 BOM 55 56 ### Changed 57 58 - Whitespace handling 59 60 ### Fixed 61 62 - Incorrect variable expansion 63 - Handling escaped '$' characters 64 65 ## [1.0.0] - 2014-10-05 66 67 First stable release. 68