File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 1.0 .0
2
+ current_version = 1.1 .0
3
3
commit = True
4
4
tag = True
5
5
Original file line number Diff line number Diff line change 5
5
----
6
6
7
7
- 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.
8
13
9
14
v1.0
10
15
----
Original file line number Diff line number Diff line change 12
12
quiet_subprocess_runner ,
13
13
)
14
14
15
- __version__ = "1.0 .0"
15
+ __version__ = "1.1 .0"
16
16
__all__ = [
17
17
"BackendUnavailable" ,
18
+ "BackendInvalid" ,
18
19
"HookMissing" ,
19
20
"UnsupportedOperation" ,
20
21
"default_subprocess_runner" ,
21
22
"quiet_subprocess_runner" ,
22
23
"BuildBackendHookCaller" ,
23
24
]
24
25
26
+ BackendInvalid = BackendUnavailable # Deprecated alias, previously a separate exception
27
+
25
28
if TYPE_CHECKING :
26
29
from ._impl import SubprocessRunner
27
30
You can’t perform that action at this time.
0 commit comments