Skip to content

Commit 9ad0d2b

Browse files
committed
version bump, update changelog
see #550
1 parent 16735ef commit 9ad0d2b

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Version 3.0.1 (git master)
2+
3+
- fix glib DLL name with Conan [boussaffawalid]
4+
15
## Version 3.0.0 (released 28 April 2025)
26

37
- drop support for Python 2.7, require Python >= 3.7 [kleisauke]

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,12 @@ Update pypi package:
269269
.. code-block:: shell
270270
271271
$ 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+
272278
$ twine upload --repository pyvips dist/*
273279
$ git tag -a v3.0.0 -m "as uploaded to pypi"
274280
$ git push origin v3.0.0

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'3.0'
6868
# The full version, including alpha/beta/rc tags.
69-
release = u'3.0.0'
69+
release = u'3.0.1'
7070

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

pyvips/version.py

Lines changed: 1 addition & 1 deletion
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__ = '3.0.0'
2+
__version__ = '3.0.1'
33

44
__all__ = ['__version__']

0 commit comments

Comments
 (0)