Skip to content

Commit b96db46

Browse files
committed
Release version v0.16.0
1 parent b158aa7 commit b96db46

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
_There are no unreleased changes at this time._
11+
12+
## [0.16.0] - 2021-03-27
13+
1014
### Changed
1115

1216
- The default value of the `encoding` parameter for `load_dotenv` and `dotenv_values` is
13-
now `"utf-8"` instead of `None` (#? by [@bbc2]).
17+
now `"utf-8"` instead of `None` (#306 by [@bbc2]).
1418
- Fix resolution order in variable expansion with `override=False` (#287 by [@bbc2]).
1519

1620
## [0.15.0] - 2020-10-28
@@ -239,7 +243,8 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
239243
[@x-yuri]: https://github.com/x-yuri
240244
[@yannham]: https://github.com/yannham
241245

242-
[Unreleased]: https://github.com/theskumar/python-dotenv/compare/v0.15.0...HEAD
246+
[Unreleased]: https://github.com/theskumar/python-dotenv/compare/v0.16.0...HEAD
247+
[0.16.0]: https://github.com/theskumar/python-dotenv/compare/v0.15.0...v0.16.0
243248
[0.15.0]: https://github.com/theskumar/python-dotenv/compare/v0.14.0...v0.15.0
244249
[0.14.0]: https://github.com/theskumar/python-dotenv/compare/v0.13.0...v0.14.0
245250
[0.13.0]: https://github.com/theskumar/python-dotenv/compare/v0.12.0...v0.13.0

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.15.0
2+
current_version = 0.16.0
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def read_files(files):
1919

2020
setup(
2121
name="python-dotenv",
22-
description="Add .env support to your django/flask apps in development and deployments",
22+
description="Read key-value pairs from a .env file and set them as environment variables",
2323
long_description=long_description,
2424
long_description_content_type='text/markdown',
2525
version=meta['__version__'],

src/dotenv/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.15.0"
1+
__version__ = "0.16.0"

0 commit comments

Comments
 (0)