File tree Expand file tree Collapse file tree 5 files changed +253
-84
lines changed Expand file tree Collapse file tree 5 files changed +253
-84
lines changed Original file line number Diff line number Diff line change 1
1
# master
2
2
3
+ ## Version 2.2.1 (released 12 JUn 2022)
4
+
3
5
* add seek and end handlers for TargetCustom [jcupitt]
4
6
* add `block_untrusted_set `, `operation_block_set ` [jcupitt]
7
+ * update for libvips 8.13 [jcupitt]
5
8
6
9
## Version 2.2.0 (released 18 Apr 2022)
7
10
Original file line number Diff line number Diff line change @@ -174,15 +174,29 @@ Generate HTML docs in ``doc/build/html``:
174
174
175
175
$ cd doc; sphinx-build -bhtml . build/html
176
176
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
+
177
189
Regenerate autodocs:
178
190
191
+ Make sure you have installed a libvips with all optional packages enabled,
192
+ then
193
+
179
194
.. code-block :: shell
180
195
181
196
$ cd doc; \
182
197
python3 -c " import pyvips; pyvips.Operation.generate_sphinx_all()" > x
183
198
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 ``.
186
200
187
201
Update version number:
188
202
Original file line number Diff line number Diff line change 66
66
# The short X.Y version.
67
67
version = u'2.2'
68
68
# The full version, including alpha/beta/rc tags.
69
- release = u'2.2.0 '
69
+ release = u'2.2.1 '
70
70
71
71
# The language for content autogenerated by Sphinx. Refer to documentation
72
72
# for a list of supported languages.
You can’t perform that action at this time.
0 commit comments