Skip to content

Commit

Permalink
Release 1.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavid committed Jun 25, 2023
1 parent 6339ba6 commit fd8aa39
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
9 changes: 9 additions & 0 deletions 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 <https://github.com/libgit2/pygit2/issues/1219>`_


1.12.1 (2023-05-07)
-------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -22,7 +22,7 @@
#author = ''

# The full version, including alpha/beta/rc tags
release = '1.12.1'
release = '1.12.2'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pygit2/_build.py
Expand Up @@ -34,7 +34,7 @@
#
# The version number of pygit2
#
__version__ = '1.12.1'
__version__ = '1.12.2'


#
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit fd8aa39

Please sign in to comment.