From 0f45d6a42a352d4255a8ffec4b77ae648f19d654 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Tue, 18 Jun 2024 12:54:55 +0200 Subject: [PATCH] Version 1.7.1 --- NEWS.rst | 9 +++++++++ cairocffi/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/NEWS.rst b/NEWS.rst index 1a90ea4..5960c98 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -2,6 +2,15 @@ cairocffi changelog ------------------- +Version 1.7.1 +............. + +Released on 2024-06-18 + +* `#227 `_: + Add get_hairline() and set_hairline() functions + + Version 1.7.0 ............. diff --git a/cairocffi/__init__.py b/cairocffi/__init__.py index 91f1846..f917d90 100644 --- a/cairocffi/__init__.py +++ b/cairocffi/__init__.py @@ -17,7 +17,7 @@ from . import constants from .ffi import ffi -VERSION = __version__ = '1.7.0' +VERSION = __version__ = '1.7.1' # supported version of cairo, used to be pycairo version too: version = '1.17.2' version_info = (1, 17, 2)