File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,14 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
8
## [ Unreleased]
9
9
10
+ _ There are no unreleased changes at this time._
11
+
12
+ ## [ 0.16.0] - 2021-03-27
13
+
10
14
### Changed
11
15
12
16
- 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 ] ).
14
18
- Fix resolution order in variable expansion with ` override=False ` (#287 by [ @bbc2 ] ).
15
19
16
20
## [ 0.15.0] - 2020-10-28
@@ -239,7 +243,8 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
239
243
[ @x-yuri ] : https://github.com/x-yuri
240
244
[ @yannham ] : https://github.com/yannham
241
245
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
243
248
[ 0.15.0 ] : https://github.com/theskumar/python-dotenv/compare/v0.14.0...v0.15.0
244
249
[ 0.14.0 ] : https://github.com/theskumar/python-dotenv/compare/v0.13.0...v0.14.0
245
250
[ 0.13.0 ] : https://github.com/theskumar/python-dotenv/compare/v0.12.0...v0.13.0
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.15 .0
2
+ current_version = 0.16 .0
3
3
commit = True
4
4
tag = True
5
5
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def read_files(files):
19
19
20
20
setup (
21
21
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 " ,
23
23
long_description = long_description ,
24
24
long_description_content_type = 'text/markdown' ,
25
25
version = meta ['__version__' ],
Original file line number Diff line number Diff line change 1
- __version__ = "0.15 .0"
1
+ __version__ = "0.16 .0"
You can’t perform that action at this time.
0 commit comments