Skip to content

Commit

Permalink
release v3.17.00
Browse files Browse the repository at this point in the history
  • Loading branch information
speed47 committed Oct 14, 2024
1 parent c01aa8c commit 3343fa3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contrib/git/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 3 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v3.17.00 - 2024/10/14
fix: osh.pl: propagate signals to plugins before exiting

## v3.16.99-rc3 - 2024/09/25
fix: regression introduced by 932e72e (rc1) for stealth stdout in ssh

Expand Down
4 changes: 2 additions & 2 deletions doc/sphinx/installation/upgrading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion lib/perl/OVH/Bastion.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3343fa3

Please sign in to comment.