Skip to content

Commit 2bfee2a

Browse files
committed
update for libvips 8.13, release as 2.2.1
as uploaded to pypi
1 parent 443a118 commit 2bfee2a

File tree

5 files changed

+253
-84
lines changed

5 files changed

+253
-84
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# master
22

3+
## Version 2.2.1 (released 12 JUn 2022)
4+
35
* add seek and end handlers for TargetCustom [jcupitt]
46
* add `block_untrusted_set`, `operation_block_set` [jcupitt]
7+
* update for libvips 8.13 [jcupitt]
58

69
## Version 2.2.0 (released 18 Apr 2022)
710

README.rst

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,29 @@ Generate HTML docs in ``doc/build/html``:
174174
175175
$ cd doc; sphinx-build -bhtml . build/html
176176
177+
Regenerate enums:
178+
179+
Make sure you have installed a libvips with all optional packages enabled,
180+
then
181+
182+
.. code-block:: shell
183+
184+
$ cd examples; \
185+
./gen-enums.py ~/GIT/libvips/libvips/Vips-8.0.gir > enums.py
186+
187+
Then check and move `enums.py` into `pyvips/`.
188+
177189
Regenerate autodocs:
178190

191+
Make sure you have installed a libvips with all optional packages enabled,
192+
then
193+
179194
.. code-block:: shell
180195
181196
$ cd doc; \
182197
python3 -c "import pyvips; pyvips.Operation.generate_sphinx_all()" > x
183198
184-
And copy-paste ``x`` into the obvious place in ``doc/vimage.rst``. See
185-
`examples/gen-enums.py` to regenerate all enums.
199+
And copy-paste ``x`` into the obvious place in ``doc/vimage.rst``.
186200

187201
Update version number:
188202

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
# The short X.Y version.
6767
version = u'2.2'
6868
# The full version, including alpha/beta/rc tags.
69-
release = u'2.2.0'
69+
release = u'2.2.1'
7070

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

0 commit comments

Comments
 (0)