diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 97b85673..e0bc0938 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is inspired by `Keep a Changelog `_ and this project adheres to `Semantic Versioning `_. -`v0.10.0`_ - 00-Unreleased-2022 +`v0.10.0`_ - 1-March-2023 ------------------------------- Added +++++ @@ -13,9 +13,13 @@ Added `#356 `_. - Value of dict can now contain an equal sign `#241 `_. -- Added support for Python 3.11 +- Added support for Python 3.11. - Added ``CONN_HEALTH_CHECKS`` to database base options `#413 `_. +- Added ``encoding`` parameter to ``read_env`` with default value 'utf8' + `#442 `_. +- Added support for Django 4.1. + `#416 `_. Deprecated ++++++++++ @@ -24,21 +28,27 @@ Deprecated Changed +++++++ -- Use UTF-8 as a encoding when open ``.env`` file. -- Provide access to ```DB_SCHEMES`` through ``cls`` rather than +- Used UTF-8 as a encoding when open ``.env`` file. +- Provided access to ```DB_SCHEMES`` through ``cls`` rather than ``Env`` in ``db_url_config`` `#414 `_. +- Correct CI workflow to use supported Python versions/OS matrix + `#441 `_. +- Reworked trigger CI workflows strategy + `#440 `_. Fixed +++++ -- Fix logic of ``Env.get_value()`` to skip parsing only when +- Fixed logic of ``Env.get_value()`` to skip parsing only when ``default=None``, not for all default values that coerce to ``False`` `#404 `_. +- Deleted duplicated include in docs/quickstart.rst + `#439 `_. Removed +++++++ - Removed deprecated ``Env.unicode()``. -- Remove ``environ.register_schemes`` calls and do not modify global +- Removed ``environ.register_schemes`` calls and do not modify global ``urllib.parse.urlparse``'s ``uses_*`` variables as this no longer needed. `#246 `_.