diff --git a/CHANGES.md b/CHANGES.md index 98661e2a9..8456d1908 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,20 @@ -# CHANGES - OpenPrinting CUPS Filters v2.0.0 - 2023-09-22 +# CHANGES - OpenPrinting CUPS Filters v2.0.1 - 2024-08-15 + +## CHANGES IN V2.0.1 (15th August 2024) + +- serial backend: Fixed bug in conversion of comments + (Pull request #548) + +- pclmtoraster: Properly set CFLAGS + As this is a C program, set `pclmtoraster_CFLAGS`, not + `pclmtoraster_CXXFLAGS` (Pull request #588). + +- `configure`: Remove `==` bashism + (Pull request #567) + +- `configure.ac`: Remove Avahi check + cups-filters does not use Avahi (Pull request #558) + ## CHANGES IN V2.0.0 (22th September 2023) diff --git a/INSTALL b/INSTALL index 847b52dbe..5b3ff1e48 100644 --- a/INSTALL +++ b/INSTALL @@ -1,4 +1,4 @@ -INSTALL - OpenPrinting CUPS Filters v2.0.0 - 2023-09-22 +INSTALL - OpenPrinting CUPS Filters v2.0.1 - 2024-08-15 ------------------------------------------------------- This file describes how to compile and install OpenPrinting CUPS diff --git a/README.md b/README.md index 8caab4a8c..10e66aee5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OpenPrinting CUPS Filters v2.0.0 - 2023-09-22 +# OpenPrinting CUPS Filters v2.0.1 - 2024-08-15 Looking for compile instructions? Read the file "INSTALL" instead... diff --git a/configure.ac b/configure.ac index eb8c56a61..e77cb4b5e 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_PREREQ([2.65]) # ==================== # Version informations # ==================== -AC_INIT([cups-filters], [2.0.0], [https://github.com/OpenPrinting/cups-filters/issues], [cups-filters], [https://github.com/OpenPrinting/cups-filters/]) +AC_INIT([cups-filters], [2.0.1], [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);}'`"