Skip to content

Commit

Permalink
Merge pull request #188 from pypa/prepare-1.1
Browse files Browse the repository at this point in the history
Prepare v1.1
  • Loading branch information
takluyver authored Apr 29, 2024
2 parents c667aeb + 7de0160 commit d79646f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.1.0
commit = True
tag = True

Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ v1.1
----

- 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.

v1.0
----
Expand Down
5 changes: 4 additions & 1 deletion src/pyproject_hooks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,19 @@
quiet_subprocess_runner,
)

__version__ = "1.0.0"
__version__ = "1.1.0"
__all__ = [
"BackendUnavailable",
"BackendInvalid",
"HookMissing",
"UnsupportedOperation",
"default_subprocess_runner",
"quiet_subprocess_runner",
"BuildBackendHookCaller",
]

BackendInvalid = BackendUnavailable # Deprecated alias, previously a separate exception

if TYPE_CHECKING:
from ._impl import SubprocessRunner

Expand Down

0 comments on commit d79646f

Please sign in to comment.