Skip to content

Commit

Permalink
Mark Release 16
Browse files Browse the repository at this point in the history
  • Loading branch information
adunstan committed Jan 13, 2023
1 parent 610c343 commit 3e0329c
Show file tree
Hide file tree
Showing 26 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion PGBuild/Log.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ See accompanying License file for license details
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

# provide a Log object for a step

Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/BlackholeFDW.pm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use warnings;
# strip required namespace from package name
(my $MODULE = __PACKAGE__) =~ s/PGBuild::Modules:://;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = {
'checkout' => \&checkout,
Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/CheckHeaders.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use Cwd qw(getcwd);
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = { 'build' => \&build, };

Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/CheckPerl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use Cwd qw(getcwd);
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = { 'build' => \&build, };

Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/FileTextArrayFDW.pm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use warnings;
# strip required namespace from package name
(my $MODULE = __PACKAGE__) =~ s/PGBuild::Modules:://;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = {
'checkout' => \&checkout,
Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/RedisFDW.pm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use warnings;
# strip required namespace from package name
(my $MODULE = __PACKAGE__) =~ s/PGBuild::Modules:://;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = {
'checkout' => \&checkout,
Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/Skeleton.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use warnings;
# strip required namespace from package name
(my $MODULE = __PACKAGE__) =~ s/PGBuild::Modules:://;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = {
'checkout' => \&checkout,
Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/TestCollateLinuxUTF8.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use Fcntl qw(:seek);
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = { 'installcheck' => \&installcheck, };

Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/TestDecoding.pm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use File::Basename;
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = { 'check' => \&check, };

Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/TestICU.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use Fcntl qw(:seek);
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = { 'installcheck' => \&installcheck, };

Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/TestMyTap.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use PGBuild::Utils qw(:DEFAULT $steps_completed);
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = {
'checkout' => \&checkout,
Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/TestSepgsql.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Cwd;
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = {
'build' => \&build,
Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/TestUpgrade.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use File::Basename;
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = {

Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Modules/TestUpgradeXversion.pm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ use File::Temp qw(tempfile);
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

my $hooks = {

Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Options.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use strict;
use warnings;
use Getopt::Long;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

our (@option_list);

Expand Down
2 changes: 1 addition & 1 deletion PGBuild/SCM.pm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package PGBuild::SCM;
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

# factory function to return the right subclass
sub new
Expand Down
2 changes: 1 addition & 1 deletion PGBuild/Utils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use File::Path;
use File::Copy;
use File::Temp qw(tempfile);

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

## no critic (ProhibitAutomaticExportation)
use Exporter qw(import);
Expand Down
2 changes: 1 addition & 1 deletion PGBuild/VSenv.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use warnings;
use Cwd;
use File::Find;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

sub getenv
{
Expand Down
2 changes: 1 addition & 1 deletion PGBuild/WebTxn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use MIME::Base64;
use Digest::SHA qw(hmac_sha256_hex);
use JSON::PP;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

sub run_web_txn
{
Expand Down
2 changes: 1 addition & 1 deletion build-farm.conf.sample
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use warnings FATAL => 'qw';

our (%conf);

# our($VERSION); $VERSION = 'REL_15';
# our($VERSION); $VERSION = 'REL_16';

my $branch;
{
Expand Down
2 changes: 1 addition & 1 deletion manage_alerts.pl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

use LWP;
use HTTP::Request::Common;
Expand Down
2 changes: 1 addition & 1 deletion run_branches.pl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

# minimum version supported
use v5.14; ## no critic (ProhibitVersionStrings)
Expand Down
2 changes: 1 addition & 1 deletion run_build.pl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

# minimum version supported
use v5.14; ## no critic (ProhibitVersionStrings)
Expand Down
2 changes: 1 addition & 1 deletion run_web_txn.pl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

use FindBin;
use lib $FindBin::RealBin;
Expand Down
2 changes: 1 addition & 1 deletion setnotes.pl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

use LWP;
use HTTP::Request::Common;
Expand Down
2 changes: 1 addition & 1 deletion update_personality.pl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use strict;
use warnings;

our ($VERSION); $VERSION = 'REL_15';
our ($VERSION); $VERSION = 'REL_16';

use LWP;
use HTTP::Request::Common;
Expand Down

0 comments on commit 3e0329c

Please sign in to comment.