]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Prepare the project for 2.4b1
authorZdenek Dohnal <zdohnal@redhat.com>
Wed, 27 Oct 2021 07:00:07 +0000 (09:00 +0200)
committerZdenek Dohnal <zdohnal@redhat.com>
Wed, 27 Oct 2021 07:00:07 +0000 (09:00 +0200)
CHANGES.md
INSTALL.md
README.md
scripts/makesrcdist

index 5236ed517963f31da7417f89e7a79cfaca754db4..1f82aa0db935705d4c104192ca7328a63290144a 100644 (file)
@@ -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)
index e2bc0e131a49036b75cfa0a9e5d1e19b6ab12d8d..90aec9954b65a3c689713c0df21f7e33104e3f0b 100644 (file)
@@ -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`.
index 7571da211cb453b563ffff100b4094f16d198afc..d7d87befc5acd91c48dc95ad86a71dd947f145e3 100644 (file)
--- 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)
index e3f9c15d18c193901d9086adb14f7dc1c90ca835..888d2b8ed19d0f941e702578df5d16909af99837 100755 (executable)
@@ -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