release v3.17.00

pull/501/head v3.17.00
Stéphane Lesimple 2 years ago committed by Stéphane Lesimple
parent c93498c762
commit eb866bd16b

@ -105,7 +105,7 @@ for f in $(git diff --cached --name-only --diff-filter=ACM $against); do
done
# check versions and docs
ver=$(grep -E '^our \$VERSION = .[0-9]+\.[0-9]+\.[0-9]+(-rc[0-9]+)?.;$' lib/perl/OVH/Bastion.pm | cut -d"'" -f2)
ver=$(grep -Eo '^our \$VERSION = .[0-9]+\.[0-9]+\.[0-9]+(-rc[0-9]+)?' lib/perl/OVH/Bastion.pm | cut -d"'" -f2)
if ! grep -Eq "^## v$ver - 202./[01][0-9]/.." doc/CHANGELOG.md; then
echo
echo "ERROR: detected version '$ver', but no matching entry in doc/CHANGELOG.md"

@ -1,3 +1,7 @@
## v3.17.00 - 2024/10/14
fix: osh.pl: propagate signals to plugins before exiting
fix: opensuse: add procps package (for pkill)
## v3.16.99-rc3 - 2024/09/25
fix: regression introduced by 932e72e (rc1) for stealth stdout in ssh

@ -27,8 +27,8 @@ See the ``--help`` for a more fine-grained upgrade path if needed.
Version-specific upgrade instructions
=====================================
v3.16.99-rc3 - 2024/09/25
*************************
v3.17.00 - 2024/10/14
*********************
This release drops support for Ubuntu 16.04 and CentOS 7. If you're still using these EOL OS releases (which is
obviously discouraged), proper functioning of The Bastion is no longer tested or guaranteed.

@ -5,7 +5,7 @@ use common::sense;
use Fcntl;
use POSIX qw(strftime);
our $VERSION = '3.16.99-rc3';
our $VERSION = '3.17.00';
BEGIN {
# only used by the handler below

Loading…
Cancel
Save