14
0

- update to 1.1.0:

* Add type annotations to the public API.
  * More careful handling of the backend-path key from pyproject.toml. Previous
    versions would load the backend and then check that it was loaded from the
    specified path; the new version only loads it from the specified path. The
    BackendInvalid exception is now a synonym for :exc:`BackendUnavailable`,
    and code should move to using the latter name.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyproject-hooks?expand=0&rev=5
This commit is contained in:
2024-06-29 13:03:21 +00:00
committed by Git OBS Bridge
parent 871acc08c7
commit 1f25a47a98
4 changed files with 25 additions and 13 deletions

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Sat Jun 29 12:29:33 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.1.0:
* Add type annotations to the public API.
* More careful handling of the backend-path key from pyproject.toml. Previous
versions would load the backend and then check that it was loaded from the
specified path; the new version only loads it from the specified path. The
BackendInvalid exception is now a synonym for :exc:`BackendUnavailable`,
and code should move to using the latter name.
-------------------------------------------------------------------
Fri Apr 21 12:31:09 UTC 2023 - Dirk Müller <dmueller@suse.com>