Skip to content

Commit

Permalink
cups-filters 2.0rc1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkamppeter committed Apr 11, 2023
1 parent 9ad74c4 commit 6b19cc6
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 deletions.
25 changes: 24 additions & 1 deletion 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)

Expand Down
4 changes: 2 additions & 2 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion 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...
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -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);}'`"
Expand Down

0 comments on commit 6b19cc6

Please sign in to comment.