From 3fd993a2b16ab75fa8d7afbd1da577c89f020463 Mon Sep 17 00:00:00 2001 From: Bryce Harrington Date: Tue, 27 Oct 2015 13:53:55 -0700 Subject: [PATCH] WIP news and release --- NEWS | 16 ++++++++++++---- RELEASING | 13 ++++++++----- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/NEWS b/NEWS index 8c0b82c3c..2f1b775c2 100644 --- a/NEWS +++ b/NEWS @@ -1,14 +1,15 @@ -Release Next (DATE Bryce Harrington ) +Release 1.14.4 (2015-10-27 Bryce Harrington ) ======================================================================== -Documentation and tests Features -------- -Added a cairo API to set up Win32 surfaces for HDC with alpha channels. +New cairo API routine to set up Win32 surfaces for HDC with alpha +channels. API Changes ----------- -None +* Add cairo_win32_surface_create_with_format() API to set up a Win32 + psurface for an HDX with an alpha channel. Dependency Changes ------------------ @@ -102,6 +103,13 @@ Bug Fixes * Cleanup various compiler and run-time warnings, valgrind errors, test misbehaviors, etc. +Change Logs +----------- +For a detailed list of new changes in this release, see: + + http://cairographics.org/releases/ChangeLog.1.14.4 + + Release 1.14.2 (2015-03-09 Bryce Harrington ) ==================================================================== This release provides collected bug fixes, along with one feature diff --git a/RELEASING b/RELEASING index b857c593f..97397d38f 100644 --- a/RELEASING +++ b/RELEASING @@ -58,13 +58,14 @@ Here are the steps to follow to create a new cairo release: the following command will show each patch that has changed a public header file since the given version: - find src/ -name '*.h' ! -name '*-private.h' ! -name 'cairoint.h' ! -name 'cairo-*features*.h' | \ + find src/ -name '*.h' ! -name '*-private.h' \ + ! -name 'cairoint.h' ! -name 'cairo-*features*.h' | \ xargs git diff X.Y.Z.. -- - Produce a complete ChangeLog with all changes, and a - ChangeLog.X.Y with just the delta since the last release. - Upload both these to the website, and include a link to them in - the NEWS announce. + Include a link to the incremental ChangeLog for this release, + which we'll be uploading in a later step: + + http://cairographics.org/releases/ChangeLog.X.Y.Z 4) Increment cairo_version_{minor|micro} in cairo-version.h: @@ -112,6 +113,8 @@ Here are the steps to follow to create a new cairo release: If for some reason you lost this message, "make release-publish-message" prints it for you. + scp ChangeLog.xxx cairographics.org:releases/ChangeLog.X.Y.Z + 7) Increment cairo_version_micro to the next larger (odd) number in cairo-version.h, commit, and push.