From fd8aa3984e91818e21513858aa0cbc82c56891f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20David=20Ib=C3=A1=C3=B1ez?= Date: Sun, 25 Jun 2023 18:18:39 +0200 Subject: [PATCH] Release 1.12.2 --- CHANGELOG.rst | 9 +++++++++ docs/conf.py | 2 +- pygit2/_build.py | 2 +- setup.py | 3 +-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e6f4e9fc..77d12128 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,12 @@ +1.12.2 (2023-06-25) +------------------------- + +- Update wheels to bundle libssh2 1.11.0 and OpenSSL 3.0.9 + +- Remove obsolete ``Remote.save()`` + `#1219 `_ + + 1.12.1 (2023-05-07) ------------------------- diff --git a/docs/conf.py b/docs/conf.py index b4ef97cd..b813c52d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ #author = '' # The full version, including alpha/beta/rc tags -release = '1.12.1' +release = '1.12.2' # -- General configuration --------------------------------------------------- diff --git a/pygit2/_build.py b/pygit2/_build.py index 49bafb22..c3bf0858 100644 --- a/pygit2/_build.py +++ b/pygit2/_build.py @@ -34,7 +34,7 @@ # # The version number of pygit2 # -__version__ = '1.12.1' +__version__ = '1.12.2' # diff --git a/setup.py b/setup.py index a1b11583..602e34d8 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,6 @@ # Import setuptools before distutils to avoid user warning from setuptools import setup, Extension -# Import from the Standard Library import codecs from distutils.command.build import build from distutils.command.sdist import sdist @@ -113,7 +112,7 @@ def _get_dlls(self): ret.append((f, target)) break else: - log.warn('"Could not find required DLL {dll} to include') + log.warn(f'Could not find required DLL {dll} to include') log.debug(f'(looked in {look_dirs})') return ret