File tree Expand file tree Collapse file tree 4 files changed +12
-2
lines changed Expand file tree Collapse file tree 4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## Version 3.0.1 (git master)
2
+
3
+ - fix glib DLL name with Conan [boussaffawalid]
4
+
1
5
## Version 3.0.0 (released 28 April 2025)
2
6
3
7
- drop support for Python 2.7, require Python >= 3.7 [kleisauke]
Original file line number Diff line number Diff line change @@ -269,6 +269,12 @@ Update pypi package:
269
269
.. code-block :: shell
270
270
271
271
$ python3 -m build --sdist
272
+
273
+ Ignore the deprecation warnings about the license, we need to update the
274
+ build backend before we can fix this.
275
+
276
+ .. code-block :: shell
277
+
272
278
$ twine upload --repository pyvips dist/*
273
279
$ git tag -a v3.0.0 -m " as uploaded to pypi"
274
280
$ git push origin v3.0.0
Original file line number Diff line number Diff line change 66
66
# The short X.Y version.
67
67
version = u'3.0'
68
68
# The full version, including alpha/beta/rc tags.
69
- release = u'3.0.0 '
69
+ release = u'3.0.1 '
70
70
71
71
# The language for content autogenerated by Sphinx. Refer to documentation
72
72
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
# this is used in pyproject.toml and imported into __init__.py
2
- __version__ = '3.0.0 '
2
+ __version__ = '3.0.1 '
3
3
4
4
__all__ = ['__version__' ]
You can’t perform that action at this time.
0 commit comments