From 6b19cc6ad0ff047cf8a90dd8f9206e5aa5c48abd Mon Sep 17 00:00:00 2001 From: Till Kamppeter Date: Wed, 12 Apr 2023 01:09:51 +0200 Subject: [PATCH] cups-filters 2.0rc1 Release --- CHANGES.md | 25 ++++++++++++++++++++++++- INSTALL | 4 ++-- README.md | 2 +- configure.ac | 2 +- 4 files changed, 28 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 6c7d17e48..fc59a881a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,27 @@ -# CHANGES - OpenPrinting CUPS Filters v2.0b3 - 2023-01-31 +# CHANGES - OpenPrinting CUPS Filters v2.0rc1 - 2023-04-12 + +## CHANGES IN V2.0rc1 (12th April 2023) + +- foomatic-rip: Fix a SIGPIPE error when calling gs (Pull request #517) + [Ubuntu's autopkgtest for + foo2zjs](https://autopkgtest.ubuntu.com/packages/f/foo2zjs/lunar/ppc64el) + shows foo2zjs's testsuite failing with cups-filters 2.0beta3 on + ppc64el. This is cause by a timing issue in foomatic-rip which is + fixed now. + +- Coverity check done by Zdenek Dohnal for the inclusion of + cups-filters in Fedora and Red Hat. Zdenek has fixed all the issues: + Missing `free()`, files not closed, potential string overflows, + ... Thanks a lot! (Pull request #510). + +- Dropped all C++ references and obsolete C standards (Pull requests + #504 and #513) + With no C++ compiler needed, there is no need for any checks or + setting for C++ in configure.ac. + +- configure.ac: Change deprecated AC_PROG_LIBTOOL for LT_INIT (Pull + request #508) + ## CHANGES IN V2.0b3 (31st January 2023) diff --git a/INSTALL b/INSTALL index fcabb24e0..4eb9ce732 100644 --- a/INSTALL +++ b/INSTALL @@ -1,5 +1,5 @@ -INSTALL - OpenPrinting CUPS Filters v2.0b3 - 2023-01-31 -------------------------------------------------------- +INSTALL - OpenPrinting CUPS Filters v2.0rc1 - 2023-04-12 +-------------------------------------------------------- This file describes how to compile and install OpenPrinting CUPS Filters from source code. For more information on OpenPrinting CUPS diff --git a/README.md b/README.md index 3c577e921..47cde732d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OpenPrinting CUPS Filters v2.0b3 - 2023-01-31 +# OpenPrinting CUPS Filters v2.0rc1 - 2023-04-12 Looking for compile instructions? Read the file "INSTALL" instead... diff --git a/configure.ac b/configure.ac index 610f15b67..837cd1cd6 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_PREREQ([2.65]) # ==================== # Version informations # ==================== -AC_INIT([cups-filters], [2.0b3], [https://github.com/OpenPrinting/cups-filters/issues], [cups-filters], [https://github.com/OpenPrinting/cups-filters/]) +AC_INIT([cups-filters], [2.0rc1], [https://github.com/OpenPrinting/cups-filters/issues], [cups-filters], [https://github.com/OpenPrinting/cups-filters/]) cups_filters_version="AC_PACKAGE_VERSION" cups_filters_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{print $1}'`" cups_filters_version_major="`echo AC_PACKAGE_VERSION | awk -F. '{printf("%d\n",$2);}'`" -- 2.47.3