File tree 4 files changed +8
-4
lines changed
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ for f in $(git diff --cached --name-only --diff-filter=ACM $against); do
105
105
done
106
106
107
107
# 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)
109
109
if ! grep -Eq " ^## v$ver - 202./[01][0-9]/.." doc/CHANGELOG.md; then
110
110
echo
111
111
echo " ERROR: detected version '$ver ', but no matching entry in doc/CHANGELOG.md"
Original file line number Diff line number Diff line change
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
+
1
5
## v3.16.99-rc3 - 2024/09/25
2
6
fix: regression introduced by 932e72e (rc1) for stealth stdout in ssh
3
7
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ See the ``--help`` for a more fine-grained upgrade path if needed.
27
27
Version-specific upgrade instructions
28
28
=====================================
29
29
30
- v3.16.99-rc3 - 2024/09/25
31
- *************************
30
+ v3.17.00 - 2024/10/14
31
+ *********************
32
32
33
33
This release drops support for Ubuntu 16.04 and CentOS 7. If you're still using these EOL OS releases (which is
34
34
obviously discouraged), proper functioning of The Bastion is no longer tested or guaranteed.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use common::sense;
5
5
use Fcntl;
6
6
use POSIX qw( strftime) ;
7
7
8
- our $VERSION = ' 3.16.99-rc3 ' ;
8
+ our $VERSION = ' 3.17.00 ' ;
9
9
10
10
BEGIN {
11
11
# only used by the handler below
You can’t perform that action at this time.
0 commit comments