[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gnurl] 40/411: scripts: improve the "get latest curl release tag" logic
From: |
gnunet |
Subject: |
[gnurl] 40/411: scripts: improve the "get latest curl release tag" logic |
Date: |
Wed, 13 Jan 2021 01:17:35 +0100 |
This is an automated email from the git hooks/post-receive script.
nikita pushed a commit to branch master
in repository gnurl.
commit 4608fa4ae645562e40fe61e08f78b4a8113e5d91
Author: Daniel Stenberg <daniel@haxx.se>
AuthorDate: Thu Aug 27 14:25:24 2020 +0200
scripts: improve the "get latest curl release tag" logic
... by insiting on it matching "^curl-".
---
scripts/contributors.sh | 2 +-
scripts/contrithanks.sh | 2 +-
scripts/delta | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/scripts/contributors.sh b/scripts/contributors.sh
index 6a6d34484..e9b426968 100755
--- a/scripts/contributors.sh
+++ b/scripts/contributors.sh
@@ -34,7 +34,7 @@ if test "$start" = "-h"; then
exit
fi
if test -z "$start"; then
- start=`git tag --sort=taggerdate | tail -1`;
+ start=`git tag --sort=taggerdate | grep "^curl-" | tail -1`;
echo "Since $start:"
fi
diff --git a/scripts/contrithanks.sh b/scripts/contrithanks.sh
index 641259216..0d16a3b90 100755
--- a/scripts/contrithanks.sh
+++ b/scripts/contrithanks.sh
@@ -33,7 +33,7 @@ if test "$start" = "-h"; then
exit
fi
if test -z "$start"; then
- start=`git tag --sort=taggerdate | tail -1`;
+ start=`git tag --sort=taggerdate | grep "^curl-" | tail -1`;
fi
diff --git a/scripts/delta b/scripts/delta
index 4b8a08915..f3781212b 100755
--- a/scripts/delta
+++ b/scripts/delta
@@ -35,7 +35,7 @@ if($start eq "-h") {
exit;
}
elsif($start eq "") {
- $start = `git tag --sort=taggerdate | tail -1`;
+ $start = `git tag --sort=taggerdate | grep "^curl-" | tail -1`;
chomp $start;
}
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [gnurl] 58/411: tests/getpart: use MIME::Base64 instead of home-cooked, (continued)
- [gnurl] 58/411: tests/getpart: use MIME::Base64 instead of home-cooked, gnunet, 2021/01/12
- [gnurl] 63/411: url: remove funny embedded comments in Curl_disonnect calls, gnunet, 2021/01/12
- [gnurl] 46/411: docs: SSLCERTS: fix English syntax, gnunet, 2021/01/12
- [gnurl] 70/411: lib/Makefile.am: bump VERSIONINFO due to new functions, gnunet, 2021/01/12
- [gnurl] 71/411: test971: show test mismatches "inline", gnunet, 2021/01/12
- [gnurl] 44/411: curl.1: fix typo invokved -> invoked, gnunet, 2021/01/12
- [gnurl] 54/411: select: simplify return code handling for poll and select, gnunet, 2021/01/12
- [gnurl] 69/411: optiontable: use DEBUGBUILD, gnunet, 2021/01/12
- [gnurl] 37/411: HTTP/3: update to OpenSSL_1_1_1g-quic-draft-29, gnunet, 2021/01/12
- [gnurl] 11/411: sftp: add new quote commands 'atime' and 'mtime', gnunet, 2021/01/12
- [gnurl] 40/411: scripts: improve the "get latest curl release tag" logic,
gnunet <=
- [gnurl] 52/411: tests: add test1912 with typechecks, gnunet, 2021/01/12
- [gnurl] 61/411: buildconf: exec autoreconf to avoid additional process, gnunet, 2021/01/12
- [gnurl] 72/411: copyright.pl: ignore buildconf, gnunet, 2021/01/12
- [gnurl] 62/411: conn: check for connection being dead before reuse, gnunet, 2021/01/12
- [gnurl] 45/411: docs: non-existing macros in man pages, gnunet, 2021/01/12
- [gnurl] 38/411: options: API for meta-data about easy options, gnunet, 2021/01/12
- [gnurl] 55/411: CMake: add option to enable Unicode on Windows, gnunet, 2021/01/12
- [gnurl] 60/411: CI/azure: no longer ignore results of test 1013, gnunet, 2021/01/12
- [gnurl] 56/411: AppVeyor: switch 64-bit Schannel Debug CMake builds to Unicode, gnunet, 2021/01/12
- [gnurl] 47/411: TLS: fix SRP detection by using the proper #ifdefs, gnunet, 2021/01/12