]> git.ipfire.org Git - thirdparty/cups-filters.git/commitdiff
cups-filters 2.0rc1 Release
authorTill Kamppeter <till.kamppeter@gmail.com>
Tue, 11 Apr 2023 23:09:51 +0000 (01:09 +0200)
committerTill Kamppeter <till.kamppeter@gmail.com>
Tue, 11 Apr 2023 23:09:51 +0000 (01:09 +0200)
CHANGES.md
INSTALL
README.md
configure.ac

index 6c7d17e4869b10c9cec823e2b977d11e0a1b95b7..fc59a881af55798f6851becd9d0e6c9b03eae836 100644 (file)
@@ -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 fcabb24e05f735d8070a424e0501608058461408..4eb9ce73299fa3f387a1e05c3d24961b8cec6c0d 100644 (file)
--- 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
index 3c577e921850303b87d160c2cc71bcf4bcb4d04e..47cde732d4415d916e08139ea3eab39e811ba54f 100644 (file)
--- 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...
index 610f15b67ae006db0a45cbfb891e66555d3bb3a7..837cd1cd63287d446ecfbfdfaad9dc08d05bd649 100644 (file)
@@ -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);}'`"