Skip to content

Commit ce2c662

Browse files
committed
Add changelog
1 parent 2a499c5 commit ce2c662

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1010

1111
- Drop support for Python 3.8
1212
- Add support for python 3.13
13+
- Enhance `dotenv run`, switch to `execvpe` for better resource management and signal handling ([#523]) by [@eekstunt]
1314

1415
## [1.0.1] - 2024-01-23
1516

1617
**Fixed**
1718

1819
* Gracefully handle code which has been imported from a zipfile ([#456] by [@samwyma])
19-
* Allow modules using load_dotenv to be reloaded when launched in a separate thread ([#497] by [@freddyaboulton])
20+
* Allow modules using `load_dotenv` to be reloaded when launched in a separate thread ([#497] by [@freddyaboulton])
2021
* Fix file not closed after deletion, handle error in the rewrite function ([#469] by [@Qwerty-133])
2122

2223
**Misc**
@@ -323,7 +324,7 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
323324

324325
## 0.5.1
325326

326-
- Fix find\_dotenv - it now start search from the file where this
327+
- Fix `find_dotenv` - it now start search from the file where this
327328
function is called from.
328329

329330
## 0.5.0
@@ -352,6 +353,7 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
352353
[#466]: https://github.com/theskumar/python-dotenv/issues/466
353354
[#454]: https://github.com/theskumar/python-dotenv/issues/454
354355
[#474]: https://github.com/theskumar/python-dotenv/issues/474
356+
[#523]: https://github.com/theskumar/python-dotenv/issues/523
355357

356358
[@alanjds]: https://github.com/alanjds
357359
[@altendky]: https://github.com/altendky
@@ -362,6 +364,7 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
362364
[@cjauvin]: https://github.com/cjauvin
363365
[@eaf]: https://github.com/eaf
364366
[@earlbread]: https://github.com/earlbread
367+
[@eekstunt]: https://github.com/eekstunt
365368
[@eggplants]: https://github.com/@eggplants
366369
[@ekohl]: https://github.com/ekohl
367370
[@elbehery95]: https://github.com/elbehery95

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0
2+
current_version = 1.0.1
33
commit = True
44
tag = True
55

@@ -24,14 +24,14 @@ relative_files = True
2424
source = dotenv
2525

2626
[coverage:paths]
27-
source =
27+
source =
2828
src/dotenv
2929
.tox/*/lib/python*/site-packages/dotenv
3030
.tox/pypy*/site-packages/dotenv
3131

3232
[coverage:report]
3333
show_missing = True
3434
include = */site-packages/dotenv/*
35-
exclude_lines =
35+
exclude_lines =
3636
if IS_TYPE_CHECKING:
3737
pragma: no cover

0 commit comments

Comments
 (0)