Skip to content

Commit d79646f

Browse files
authored
Merge pull request #188 from pypa/prepare-1.1
Prepare v1.1
2 parents c667aeb + 7de0160 commit d79646f

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0
2+
current_version = 1.1.0
33
commit = True
44
tag = True
55

docs/changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ v1.1
55
----
66

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

914
v1.0
1015
----

src/pyproject_hooks/__init__.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,19 @@
1212
quiet_subprocess_runner,
1313
)
1414

15-
__version__ = "1.0.0"
15+
__version__ = "1.1.0"
1616
__all__ = [
1717
"BackendUnavailable",
18+
"BackendInvalid",
1819
"HookMissing",
1920
"UnsupportedOperation",
2021
"default_subprocess_runner",
2122
"quiet_subprocess_runner",
2223
"BuildBackendHookCaller",
2324
]
2425

26+
BackendInvalid = BackendUnavailable # Deprecated alias, previously a separate exception
27+
2528
if TYPE_CHECKING:
2629
from ._impl import SubprocessRunner
2730

0 commit comments

Comments
 (0)