Skip to content

Commit 4f9bfbc

Browse files
authored
Merge pull request #2508 from drwetter/make_rel3.0
Prepare for release 3.0
2 parents 05fb5f9 + 3cb2371 commit 4f9bfbc

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Please make sure that you provide enough information so that we understand what your issue is about.
22

3-
1. uname -a
4-
5-
2. testssl version from the banner: testssl.sh -b 2>/dev/null | head -4 | tail -2
3+
1. ``uname -a``
64

7-
3. git log | head -1 (if running from git repo). Important: If in doubt check the git log and/or check whether you run the lastest 3.0 version from the git repo.
5+
2. testssl version from the banner: ``testssl.sh -b 2>/dev/null | head -4 | tail -2``
86

9-
4. openssl version used by testssl.sh: testssl.sh -b 2>/dev/null | awk -F':' '/openssl/ { print $2}'
7+
3. ``git log | head -1`` (if running from git repo). Important: If in doubt check the git log and/or check whether you run the lastest 3.0 version from the git repo.
8+
9+
4. openssl and bash version used by testssl.sh: ``testssl.sh -b 2>/dev/null | grep Using``
1010

1111
5. steps to reproduce: testssl.sh or docker command line, if possible incl. host
1212

testssl.sh

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ trap "child_error" USR1
117117

118118
########### Internal definitions
119119
#
120-
declare -r VERSION="3.0.8"
120+
declare -r VERSION="3.0.9"
121121
declare -r SWCONTACT="dirk aet testssl dot sh"
122122
grep -E -q "dev|rc|beta" <<< "$VERSION" && \
123123
SWURL="https://testssl.sh/dev/" ||
@@ -17725,22 +17725,21 @@ mybanner() {
1772517725
OPENSSL_NR_CIPHERS=$(count_ciphers "$(actually_supported_osslciphers 'ALL:COMPLEMENTOFALL:@STRENGTH' 'ALL')")
1772617726
bb1=$(cat <<EOF
1772717727

17728-
###########################################################
17729-
$PROG_NAME $VERSION from
17728+
#####################################################################
17729+
$PROG_NAME version $VERSION from
1773017730
EOF
1773117731
)
1773217732
bb2=$(cat <<EOF
1773317733

17734-
This program is free software. Distribution and
17735-
modification under GPLv2 permitted.
17736-
USAGE w/o ANY WARRANTY. USE IT AT YOUR OWN RISK!
17734+
This program is free software. Distribution and modification under
17735+
GPLv2 permitted. USAGE w/o ANY WARRANTY. USE IT AT YOUR OWN RISK!
1773717736

17738-
Please file bugs @
17737+
Please file bugs @
1773917738
EOF
1774017739
)
1774117740
bb3=$(cat <<EOF
1774217741

17743-
###########################################################
17742+
#####################################################################
1774417743
EOF
1774517744
)
1774617745
pr_bold "$bb1 "
@@ -17754,10 +17753,11 @@ EOF
1775417753
pr_boldurl "https://testssl.sh/bugs/"; outln
1775517754
pr_bold "$bb3"
1775617755
outln "\n"
17757-
outln " Using \"$($OPENSSL version 2>/dev/null)\" [~$OPENSSL_NR_CIPHERS ciphers]"
17758-
out " on $HNAME:"
17756+
out " Using "; pr_italic "bash ${BASH_VERSINFO[0]}.${BASH_VERSINFO[1]}.${BASH_VERSINFO[2]}"; out ". "
17757+
pr_italic "$($OPENSSL version 2>/dev/null)"; outln " [~$OPENSSL_NR_CIPHERS ciphers]"
17758+
out " on $HNAME:"
1775917759
outln "$OPENSSL_LOCATION"
17760-
outln " (built: \"$OSSL_BUILD_DATE\", platform: \"$OSSL_VER_PLATFORM\")\n"
17760+
out " (built: "; pr_italic "$OSSL_BUILD_DATE"; out ", platform: "; pr_italic "$OSSL_VER_PLATFORM"; outln ")"
1776117761
}
1776217762

1776317763
calc_scantime() {

0 commit comments

Comments
 (0)