Skip to content

Commit

Permalink
cups-filters 2.0.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkamppeter committed Aug 14, 2024
1 parent edc5998 commit 5a73330
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
18 changes: 17 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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...
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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);}'`"
Expand Down

0 comments on commit 5a73330

Please sign in to comment.