Skip to content

Commit

Permalink
Release version v0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bbc2 committed Mar 27, 2021
1 parent b158aa7 commit b96db46
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Expand Up @@ -7,10 +7,14 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

_There are no unreleased changes at this time._

## [0.16.0] - 2021-03-27

### Changed

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

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

[Unreleased]: https://github.com/theskumar/python-dotenv/compare/v0.15.0...HEAD
[Unreleased]: https://github.com/theskumar/python-dotenv/compare/v0.16.0...HEAD
[0.16.0]: https://github.com/theskumar/python-dotenv/compare/v0.15.0...v0.16.0
[0.15.0]: https://github.com/theskumar/python-dotenv/compare/v0.14.0...v0.15.0
[0.14.0]: https://github.com/theskumar/python-dotenv/compare/v0.13.0...v0.14.0
[0.13.0]: https://github.com/theskumar/python-dotenv/compare/v0.12.0...v0.13.0
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.15.0
current_version = 0.16.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -19,7 +19,7 @@ def read_files(files):

setup(
name="python-dotenv",
description="Add .env support to your django/flask apps in development and deployments",
description="Read key-value pairs from a .env file and set them as environment variables",
long_description=long_description,
long_description_content_type='text/markdown',
version=meta['__version__'],
Expand Down
2 changes: 1 addition & 1 deletion src/dotenv/version.py
@@ -1 +1 @@
__version__ = "0.15.0"
__version__ = "0.16.0"

0 comments on commit b96db46

Please sign in to comment.