diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9aeb95d..269c7ac 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -12,6 +12,7 @@ - add `stream.py` example - fix a missing reference issue with custom sources - fix `addalpha` with scrgb images [RiskoZoSlovenska] +- fix macos compat, again [kleisauke] ## Version 2.2.2 (released 4 Jan 2023) diff --git a/doc/conf.py b/doc/conf.py index b8d68c5..26c44c4 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -64,9 +64,9 @@ # built documents. # # The short X.Y version. -version = u'2.2' +version = u'3.0' # The full version, including alpha/beta/rc tags. -release = u'2.2.3' +release = u'3.0.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyvips/vdecls.py b/pyvips/vdecls.py index 3a68a37..bcc0a49 100644 --- a/pyvips/vdecls.py +++ b/pyvips/vdecls.py @@ -356,6 +356,7 @@ def cdefs(features): int vips_cache_get_size(); size_t vips_cache_get_max_mem(); int vips_cache_get_max_files(); + ''' # we must only define this in ABI mode ... in API mode we use diff --git a/pyvips/version.py b/pyvips/version.py index 391907e..f174a96 100644 --- a/pyvips/version.py +++ b/pyvips/version.py @@ -1,4 +1,4 @@ # this is used in pyproject.toml and imported into __init__.py -__version__ = '2.2.3' +__version__ = '3.0.0' __all__ = ['__version__']