From 1eed746c89a78f85592e6052cb16ce81661f6a10 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Mon, 19 Jun 2023 09:36:08 +0200 Subject: [PATCH] release --- NEWS | 14 ++++++++++++++ meson.build | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index c44e7b91..9af64227 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,19 @@ Since version 1.11.0 Pycairo uses `Semantic Versioning `__ +.. _v1.24.0: + +1.24.0 - 2023-06-19 +------------------- + +* Dropped Python 3.7 support +* Bumped meson version requirement from 0.53.0 to 0.56.0 +* Various cairo dependency updates for the Windows wheel build +* examples: update to GTK4 :pr:`307` +* examples: add a clip_image example :pr:`316` +* docs: fix the build with Sphinx 6 :pr:`318` +* Various code cleanups :pr:`306` +* Added Python 3.12 Windows wheels + .. _v1.23.0: 1.23.0 - 2022-11-28 diff --git a/meson.build b/meson.build index 16af92e3..de69dc8d 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'pycairo', 'c', - version: '1.23.1', + version: '1.24.0', meson_version: '>= 0.56.0', license: 'LGPL-2.1-only OR MPL-1.1', default_options: [ diff --git a/pyproject.toml b/pyproject.toml index 0f611963..bb76e7e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pycairo" -version = "1.20.1" +version = "1.24.0" description = "Python interface for cairo" authors = ["Christoph Reiter"] diff --git a/setup.py b/setup.py index 9d3304f3..b91fb5cc 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from distutils import sysconfig -PYCAIRO_VERSION = '1.23.1' +PYCAIRO_VERSION = '1.24.0' CAIRO_VERSION_REQUIRED = '1.15.10' PYCAIRO_BUILD_NO_PKGCONFIG = os.environ.get("PYCAIRO_BUILD_NO_PKGCONFIG", False)