Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Fixed

- Strip a leading UTF-8 BOM from `.env` file contents so the first variable is no longer silently lost when the file is saved with BOM (e.g. by some JetBrains IDEs on Windows) by [@h1whelan] in [#640]
- Fix a package build deprecation warning caused by a non-string `license` value in `pyproject.toml`.

## [1.2.2] - 2026-03-01

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = "Read key-value pairs from a .env file and set them as environment
authors = [
{name = "Saurabh Kumar", email = "me+github@saurabh-kumar.com"},
]
license = { text = "BSD-3-Clause" }
license = "BSD-3-Clause"
keywords = [
"environment variables",
"deployments",
Expand Down
Loading