From dabe52eac18ef677af262657c97a7689b20fa909 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sun, 29 Sep 2024 10:18:00 +0100 Subject: [PATCH 1/2] Prepare release notes for 1.2 --- docs/changelog.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 73eea77..4b68795 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,14 @@ Changelog ========= +v1.2 +---- + +- Improve interoperability with ``importlib.metadata``, fixing a regression + in setuptools compatibility in 1.1 (#199). +- Clean up the ``_in_process`` directory inside the package from ``sys.path`` + before imporing the backend (#193). + v1.1 ---- From 102747081953a43bcbb9304e6319de3bf2166bfc Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sun, 29 Sep 2024 10:18:07 +0100 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=201.1.0=20=E2=86=92=201.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- src/pyproject_hooks/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 955a7e4..f742038 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.0 +current_version = 1.2.0 commit = True [bumpversion:file:src/pyproject_hooks/__init__.py] diff --git a/src/pyproject_hooks/__init__.py b/src/pyproject_hooks/__init__.py index df857df..746b89f 100644 --- a/src/pyproject_hooks/__init__.py +++ b/src/pyproject_hooks/__init__.py @@ -12,7 +12,7 @@ quiet_subprocess_runner, ) -__version__ = "1.1.0" +__version__ = "1.2.0" __all__ = [ "BackendUnavailable", "BackendInvalid",