v2.1.0
https://www.nuget.org/packages/DotNetEnv/2.1.0
Technically this includes 2 breaking changes, but it is highly unlikely anyone is using them, and the changes are clear improvements.
- Adds Env.LoadMulti for loading multiple .env files on top of each other
- Removes Env.Load for list of lines -- was only used for tests here and highly discouraged for deployed use as it effectively defines hardcoded env vars in code. If you need to reproduce this functionality, use LoadContents with "\n"s between lines in a single string.
- Unquoted values can now include inline whitespace -- but still allow for comments at the end, even while allowing inline hashes in a word (to support k8s configmap from env)
Again, note that this changes the behavior of unquoted values in a noticeable way -- but before this would have been a parse error, so this simply makes it more flexible than it used to be.