From: Zdenek Dohnal Date: Wed, 27 Oct 2021 07:00:07 +0000 (+0200) Subject: Prepare the project for 2.4b1 X-Git-Tag: v2.4b1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef0b0b74f4fbc9191ff726ac5d6f99c48c0eae6e;p=thirdparty%2Fcups.git Prepare the project for 2.4b1 --- diff --git a/CHANGES.md b/CHANGES.md index 5236ed5179..1f82aa0db9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,8 +1,8 @@ Changes in OpenPrinting CUPS ============================ -CUPS v2.4-b1 (Pending) ----------------------- +CUPS v2.4b1 +----------- - Added support for CUPS running in a Snapcraft snap. - Added basic OAuth 2.0 client support (Issue #100) diff --git a/INSTALL.md b/INSTALL.md index e2bc0e131a..90aec9954b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,5 +1,5 @@ -Building and Installing OpenPrinting CUPS -========================================= +Building and Installing OpenPrinting CUPS v2.4b1 +================================================ This file describes how to compile and install CUPS from source code. For more information on CUPS see the file called `README.md`. diff --git a/README.md b/README.md index 7571da211c..d7d87befc5 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -OpenPrinting CUPS -================= +OpenPrinting CUPS v2.4b1 +======================== ![Version](https://img.shields.io/github/v/release/openprinting/cups?include_prereleases) ![Apache 2.0](https://img.shields.io/github/license/openprinting/cups) diff --git a/scripts/makesrcdist b/scripts/makesrcdist index e3f9c15d18..888d2b8ed1 100755 --- a/scripts/makesrcdist +++ b/scripts/makesrcdist @@ -59,21 +59,21 @@ else exit 1 fi - temp=`head -1 README.md | awk '{print $4}'` + temp=`head -1 README.md | awk '{print $3}'` if test "$temp" != "v$version"; then echo "Still need to update version to v$version in README.md (saw $temp)" exit 1 fi - temp=`head -1 INSTALL.md | awk '{print $4}'` + temp=`head -1 INSTALL.md | awk '{print $6}'` if test "$temp" != "v$version"; then echo "Still need to update version to v$version in INSTALL.md (saw $temp)" exit 1 fi - temp=`head -6 CHANGES-OPENPRINTING.md | grep "Changes in" | awk '{print $4}'` + temp=`head -6 CHANGES.md | grep "Changes in" | awk '{print $2}'` if test "$temp" != "v$version"; then - echo "Still need to add Changes in v$version in CHANGES-OPENPRINTING.md (saw $temp)" + echo "Still need to add Changes in v$version in CHANGES.md (saw $temp)" exit 1 fi