diff options
author | Bryce Harrington <bryce@bryceharrington.org> | 2020-11-27 16:57:18 -0800 |
---|---|---|
committer | Bryce Harrington <bryce@bryceharrington.org> | 2020-11-27 18:18:03 -0800 |
commit | 156cd3eaaebfd8635517c2baf61fcf3627ff7ec2 (patch) | |
tree | 9637d8d5855e0568e5f46b1631e3a9ce4296bcd9 | |
parent | dfbc57f9a3b7036ed3a31ff47082c1331ae3e1a7 (diff) |
Release 1.17.41.17.4
-rw-r--r-- | NEWS | 40 | ||||
-rw-r--r-- | src/cairo-version.h | 2 |
2 files changed, 41 insertions, 1 deletions
@@ -1,3 +1,43 @@ +Release 1.17.4 (2020-11-27 Bryce Harrington <bryce@bryceharrington.org>) +======================================================================== + +Thank you to the many people who have contributed the large number of +bug fixes and refinements since 1.17.2. + +A particularly noteworthy improvement in this release is the addition of +the meson build system as an alternative to autotools. Autotools is +still used for producing the releases, so will be the default in the +tarball and presumably will still be preferred by distro packagers of +Cairo. It should be possible to build the release tarball using meson, +but as this is new functionality consider it still a work in progress. +The meson configuration has striven to track the autotools +implementation but be aware there may still be some differences between +the two. + +Continuous Integration configurations have been added that enable +testing on a variety of platforms including Fedora, Windows MSVC, etc. +This work has helped in identifying updates and fixes including +adjusting to changes in API calls in dependencies like rsvg and +fontconfig, and to fix platform-specific build issues. + +The cogl Cairo backend underwent significant development this cycle. +Cogl provides GPU accelerated drawing support. The development work +includes implementation of core functionality, performance +optimizations, and stabilization. + +Subpixel positioning support allows improved glyph outlines with the +Freetype font backend. + +For a complete log of changes, please see + + https://cairographics.org/releases/ChangeLog.1.17.4 + +[On a personal note, this will be my last release for Cairo. My Cairo +time availability has been non-existent (particularly this crazy past +year). The release process is well documented and hopefully will help +whomever picks up the baton from here.] + + Release 1.17.2 (2019-01-31 Bryce Harrington <bryce@bryceharrington.org>) ======================================================================== This snapshot provides the new support for writing floating point diff --git a/src/cairo-version.h b/src/cairo-version.h index 605ec1a7c..9fd69fb45 100644 --- a/src/cairo-version.h +++ b/src/cairo-version.h @@ -3,6 +3,6 @@ #define CAIRO_VERSION_MAJOR 1 #define CAIRO_VERSION_MINOR 17 -#define CAIRO_VERSION_MICRO 3 +#define CAIRO_VERSION_MICRO 4 #endif |