From 523d508fa7dec9d64bd7f8558751178f96cc775a Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Mon, 12 Jun 2023 10:08:56 +0200 Subject: [PATCH] Version 1.6.0 --- NEWS.rst | 17 +++++++++++++++++ cairocffi/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/NEWS.rst b/NEWS.rst index fd33aac..b962663 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -2,6 +2,23 @@ cairocffi changelog ------------------- +Version 1.6.0 +............. + +Released on 2023-06-12 + +**This version uses a new CFFI mode that may break your program.** + +CairoCFFI now uses Flit for packaging and is also distributed as a Python +wheel. + +Please test carefully and don’t hesitate to report issues before using it in +production. + +* `#216 `_: + Use ABI-level in-line CFFI mode + + Version 1.5.1 ............. diff --git a/cairocffi/__init__.py b/cairocffi/__init__.py index c687cba..6e2050d 100644 --- a/cairocffi/__init__.py +++ b/cairocffi/__init__.py @@ -15,7 +15,7 @@ from . import constants from .ffi import ffi -VERSION = __version__ = '1.5.1' +VERSION = __version__ = '1.6.0' # supported version of cairo, used to be pycairo version too: version = '1.17.2' version_info = (1, 17, 2)