Skip to content

Commit 6b586da

Browse files
committed
bump version to 3.0.0
1 parent 1c05fcd commit 6b586da

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.rst

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- add `stream.py` example
1313
- fix a missing reference issue with custom sources
1414
- fix `addalpha` with scrgb images [RiskoZoSlovenska]
15+
- fix macos compat, again [kleisauke]
1516

1617
## Version 2.2.2 (released 4 Jan 2023)
1718

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = u'2.2'
67+
version = u'3.0'
6868
# The full version, including alpha/beta/rc tags.
69-
release = u'2.2.3'
69+
release = u'3.0.0'
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# for a list of supported languages.

pyvips/vdecls.py

+1
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,7 @@ def cdefs(features):
356356
int vips_cache_get_size();
357357
size_t vips_cache_get_max_mem();
358358
int vips_cache_get_max_files();
359+
359360
'''
360361

361362
# we must only define this in ABI mode ... in API mode we use

pyvips/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# this is used in pyproject.toml and imported into __init__.py
2-
__version__ = '2.2.3'
2+
__version__ = '3.0.0'
33

44
__all__ = ['__version__']

0 commit comments

Comments
 (0)