From 60029fad3bbacdd8d4defee0bcd018168b0fed07 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 19 Nov 2022 14:15:44 +0100 Subject: [PATCH] release --- NEWS | 17 +++++++++++++++++ meson.build | 2 +- setup.py | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 3452ca28..63139557 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,22 @@ Since version 1.11.0 Pycairo uses `Semantic Versioning `__ +.. _v1.22.0: + +1.22.0 - 2022-11-19 +------------------- + +* Officially support Python 3.11 :pr:`285` +* PDFSurface.version_to_string(): Fix crash with negative versions :pr:`279` +* typing: ImageSurface.get_stride() returns an int :pr:`282` +* typing: Fix incorrect interface for Matrix constructor :pr:`271` +* typing: Use Generic for Context :pr:`274` +* docs: some cairo.Context fixes :pr:`276` +* docs: try to make create_from_png/write_to_png more clear :pr:`261` +* docs: add an example for how to convert a surface to pillow :pr:`281` +* docs: cairo.Format.RGB24: document that unused bytes may be overwritten :pr:`289` +* tests: don't depend on specific ref counts :pr:`291` +* tests: compatibility fixes for cairo 1.17.6 :pr:`264` + .. _v1.21.0: 1.21.0 - 2022-03-07 diff --git a/meson.build b/meson.build index cd31a63d..7df69de5 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'pycairo', 'c', - version: '1.21.1', + version: '1.22.0', meson_version: '>= 0.53.0', license: 'LGPL-2.1-only OR MPL-1.1', default_options: [ diff --git a/setup.py b/setup.py index 664001cb..fd30d356 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ from distutils import sysconfig -PYCAIRO_VERSION = '1.21.1' +PYCAIRO_VERSION = '1.22.0' CAIRO_VERSION_REQUIRED = '1.15.10'