Changelog for
python310-python-dotenv-0.20.0-1.1.noarch.rpm :
* Mon Apr 11 2022 Markéta Machová
- Update to 0.20.0
* The default value of the encoding parameter for load_dotenv and dotenv_values is now \"utf-8\" instead of None
* Add --override/--no-override option to dotenv run
* Raise ValueError if quote_mode isn\'t one of always, auto or never in set_key
* Require Python 3.5 or a later version. Python 2 and 3.4 are no longer supported.
* The stream argument of load_dotenv and dotenv_values can now be a text stream (IO[str]), which includes values like io.StringIO(\"foo\") and open(\"file.env\", \"r\")
* Add support for Python 3.10.
* Add encoding (Optional[str]) parameter to get_key, set_key and unset_key.- Do not require mock
* Mon Feb 21 2022 Andreas Schneider - Skip building for python2
* Mon Dec 07 2020 Benjamin Greiner - Skip testing with optional jupyter_ipython. Jupyter is only available for Python >= 3.7 gh#openSUSE/python-rpm-macros#66
* Wed Dec 02 2020 Michael Ströder - Update to 0.15.0
* Add --export option to set to make it prepend the binding with export (#270 by AATTjadutter).
* Make set command create the .env file in the current directory if no .env file was found (#270 by AATTjadutter).
* Fix potentially empty expanded value for duplicate key (#260 by AATTbbc2).
* Fix import error on Python 3.5.0 and 3.5.1 (#267 by AATTgongqingkui).
* Fix parsing of unquoted values containing several adjacent space or tab characters (#277 by AATTbbc2, review by AATTx-yuri).
* Wed Aug 05 2020 Marketa Calabkova - Update to 0.14.0
* Privilege definition in file over the environment in variable expansion (#256 by [AATTelbehery95]).
* Improve error message for when file isn\'t found (#245 by [AATTsnobu]).
* Use HTTPS URL in package meta data (#251 by [AATTekohl]).
* Tue Jun 30 2020 John Vandenberg - Downgrade jupyter_ipython from Recommends to Suggests as python-dotenv is now a dependency of docker-compose
* Wed May 20 2020 Marketa Calabkova - Update to 0.13.0
* Add support for a Bash-like default value in variable expansion
* Fix escaping of quoted values written by set_key
* Few more fixes
* Wed Mar 18 2020 Tomáš Chvátal - Update to 0.12.0:
* various fixes
* Mon Jul 22 2019 Tomáš Chvátal - Update to 0.10.3:
* Small cleanups
* Sat May 25 2019 Tomáš Chvátal - Update to 0.10.2:
* Add type hints and expose them to users (AATTqnighy)(#172)
* load_dotenv and dotenv_values now accept an encoding parameter, defaults to None (AATTtheskumar)(AATTearlbread)(#161)
* Fix str/unicode inconsistency in Python 2: values are always str now. (AATTbbc2)(#121)
* Fix Unicode error in Python 2, introduced in 0.10.0. (AATTbbc2)(#176)