Skip to content

Commit eb866bd

Browse files
committed
release v3.17.00
1 parent c93498c commit eb866bd

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

contrib/git/pre-commit

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ for f in $(git diff --cached --name-only --diff-filter=ACM $against); do
105105
done
106106

107107
# check versions and docs
108-
ver=$(grep -E '^our \$VERSION = .[0-9]+\.[0-9]+\.[0-9]+(-rc[0-9]+)?.;$' lib/perl/OVH/Bastion.pm | cut -d"'" -f2)
108+
ver=$(grep -Eo '^our \$VERSION = .[0-9]+\.[0-9]+\.[0-9]+(-rc[0-9]+)?' lib/perl/OVH/Bastion.pm | cut -d"'" -f2)
109109
if ! grep -Eq "^## v$ver - 202./[01][0-9]/.." doc/CHANGELOG.md; then
110110
echo
111111
echo "ERROR: detected version '$ver', but no matching entry in doc/CHANGELOG.md"

doc/CHANGELOG.md

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

doc/sphinx/installation/upgrading.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ See the ``--help`` for a more fine-grained upgrade path if needed.
2727
Version-specific upgrade instructions
2828
=====================================
2929

30-
v3.16.99-rc3 - 2024/09/25
31-
*************************
30+
v3.17.00 - 2024/10/14
31+
*********************
3232

3333
This release drops support for Ubuntu 16.04 and CentOS 7. If you're still using these EOL OS releases (which is
3434
obviously discouraged), proper functioning of The Bastion is no longer tested or guaranteed.

lib/perl/OVH/Bastion.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use common::sense;
55
use Fcntl;
66
use POSIX qw(strftime);
77

8-
our $VERSION = '3.16.99-rc3';
8+
our $VERSION = '3.17.00';
99

1010
BEGIN {
1111
# only used by the handler below

0 commit comments

Comments
 (0)