14
0

- update to 1.0.1:

* Gracefully handle code which has been imported from a zipfile
  * Allow modules using load_dotenv to be reloaded when launched
    in a separate thread
  * Fix file not closed after deletion, handle error in the
    rewrite function
  * Use pathlib.Path in tests
  * Fix year in release date in changelog.md
  * Use https in README links
  * 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]),

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dotenv?expand=0&rev=30
This commit is contained in:
2024-02-01 21:24:10 +00:00
committed by Git OBS Bridge
parent 293557e8b0
commit 25ae03750a
4 changed files with 21 additions and 8 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Thu Feb 1 21:23:28 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.0.1:
* Gracefully handle code which has been imported from a zipfile
* Allow modules using load_dotenv to be reloaded when launched
in a separate thread
* Fix file not closed after deletion, handle error in the
rewrite function
* Use pathlib.Path in tests
* Fix year in release date in changelog.md
* Use https in README links
-------------------------------------------------------------------
Sun May 7 09:14:08 UTC 2023 - Dirk Müller <dmueller@suse.com>
@@ -51,8 +64,8 @@ Mon Apr 11 10:55:56 UTC 2022 - Markéta Machová <mmachova@suse.com>
* 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]),
* 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.