Skip to content

Commit

Permalink
Bump version to 4.2
Browse files Browse the repository at this point in the history
Updates #85
  • Loading branch information
shawnlaffan committed Mar 28, 2023
1 parent 6acfdee commit ebef082
Show file tree
Hide file tree
Showing 101 changed files with 101 additions and 101 deletions.
2 changes: 1 addition & 1 deletion bin/BiodiverseGUI.pl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ BEGIN
#no warnings 'redefine';
no warnings 'once';
use English qw { -no_match_vars };
our $VERSION = '4.1';
our $VERSION = '4.2';

local $OUTPUT_AUTOFLUSH = 1;

Expand Down
2 changes: 1 addition & 1 deletion bin/load_and_randomise.pl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

local $| = 1;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::Config;

Expand Down
2 changes: 1 addition & 1 deletion bin/load_and_randomise_wrapper.pl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#use lib Path::Class::dir ( $Bin, '..', 'lib')->stringify;
use rlib;

our $VERSION = '4.1';
our $VERSION = '4.2';

# are we running as a PerlApp executable?
my $perl_app_tool = $PerlApp::TOOL;
Expand Down
2 changes: 1 addition & 1 deletion bin/run_randomisation.pl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

local $| = 1;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::Config;
use Biodiverse::BaseData;
Expand Down
2 changes: 1 addition & 1 deletion etc/versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Version numbers for Biodiverse releases.

[release]
4.1
4.2

[development]
3.99_005
2 changes: 1 addition & 1 deletion lib/App/Biodiverse.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package App::Biodiverse;
use strict;
use warnings;

our $VERSION = '4.1';
our $VERSION = '4.2';

1;

Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/BaseData.pm
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ use Biodiverse::Indices;
use Biodiverse::Metadata::Parameter;
my $parameter_metadata_class = 'Biodiverse::Metadata::Parameter';

our $VERSION = '4.1';
our $VERSION = '4.2';

use parent qw {
Biodiverse::Common
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/BaseData/Exclusions.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use 5.022;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Carp;
use Scalar::Util qw /looks_like_number blessed reftype/;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/BaseData/Import.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
use 5.022;
use English qw { -no_match_vars };

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::Metadata::Parameter;
my $parameter_metadata_class = 'Biodiverse::Metadata::Parameter';
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/BaseData/ManageOutputs.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use 5.022;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Carp;
use Scalar::Util qw /looks_like_number blessed reftype/;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/BaseStruct.pm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use Sort::Key::Natural qw /natsort rnatsort/;
use constant HAVE_DATA_RECURSIVE
=> !$ENV{BD_NO_USE_PANDA} && eval 'require Data::Recursive';

our $VERSION = '4.1';
our $VERSION = '4.2';

my $EMPTY_STRING = q{};

Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/BaseStruct/Export.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use 5.022;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Carp;
use English ( -no_match_vars );
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/Cluster.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Biodiverse::Cluster;

use 5.010;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Carp;
use strict;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/Common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ use Biodiverse::Exception;

require Clone;

our $VERSION = '4.1';
our $VERSION = '4.2';

my $EMPTY_STRING = q{};

Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use Ref::Util qw { :all };

use English ( -no_match_vars );

our $VERSION = '4.1';
our $VERSION = '4.2';

#use Exporter;
#use Devel::Symdump;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/ElementProperties.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Scalar::Util qw/looks_like_number/;

use Biodiverse::Exception;

our $VERSION = '4.1';
our $VERSION = '4.2';

use parent qw /Biodiverse::BaseStruct Biodiverse::Common/; #/
use Ref::Util qw { :all };
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/Exception.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package Biodiverse::Exception;
use strict;
use warnings;
our $VERSION = '4.1';
our $VERSION = '4.2';

use Config;
my ($bit_size, $prng_init_descr, $other_bit_size);
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/BasedataImport.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use English ( -no_match_vars );

use Carp;

our $VERSION = '4.1';
our $VERSION = '4.2';

use File::Basename;
use Gtk2;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Callbacks.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use English ( -no_match_vars );

use Browser::Start qw( open_url ); # needed for the about dialogue

our $VERSION = '4.1';
our $VERSION = '4.2';

use constant FALSE => 0;
use constant TRUE => 1;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/CellPopup.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Sort::Key::Natural qw /natsort/;
use Ref::Util qw /is_ref is_arrayref is_hashref/;
use Biodiverse::Utilities qw/sort_list_with_tree_names_aa/;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Gtk2;

Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/DeleteElementProperties.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Gtk2;
#use Biodiverse::RemapGuesser qw/guess_remap/;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Dendrogram.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use Gtk2;
use Gnome2::Canvas;
use POSIX qw /ceil/; # for ceil()

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::GUI::GUIManager;
use Biodiverse::TreeNode;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Exclusions.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Carp;

use Gtk2;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::GUI::GUIManager;
use Biodiverse::GUI::ParametersTable;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Export.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use Cwd;

use List::MoreUtils qw /any none/;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::GUI::GUIManager;
use Biodiverse::GUI::ParametersTable;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/GUIManager.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.010;

#use Data::Structure::Util qw /has_circular_ref get_refs/; # hunting for circular refs

our $VERSION = '4.1';
our $VERSION = '4.2';

#use Data::Dumper;
use Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Grid.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use Tree::R;

use Geo::ShapeFile;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::GUI::GUIManager;
use Biodiverse::GUI::CellPopup;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Help.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ require IO::Socket::SSL;

use Biodiverse::GUI::YesNoCancel;

our $VERSION = '4.1';
our $VERSION = '4.2';

##############################################
# Web links.
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Legend.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use Tree::R;

#use Geo::ShapeFile;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::GUI::GUIManager;
use Biodiverse::GUI::CellPopup;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Manager/BaseDatas.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use 5.022;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Carp;
use Scalar::Util qw /blessed/;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/MatrixGrid.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use POSIX qw /floor/;
use List::Util qw /min max/;
use List::MoreUtils qw /minmax/;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Gtk2;
use Gnome2::Canvas;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/MatrixImport.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Ref::Util qw { :all };

use Gtk2;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::GUI::Project;
use Biodiverse::GUI::BasedataImport
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/OpenDialog.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Gtk2;

use Cwd;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::GUI::GUIManager;
use Ref::Util qw { :all };
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Overlays.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use Gtk2;
#use Data::Dumper;
use Geo::ShapeFile;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::GUI::GUIManager;
use Biodiverse::GUI::Project;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/ParametersTable.pm
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ use Gtk2;
use Carp;
use English qw { -no_match_vars };

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::GUI::GUIManager;
use Biodiverse::GUI::SpatialParams;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/PhylogenyImport.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Biodiverse::GUI::BasedataImport;
use Biodiverse::GUI::YesNoCancel;


our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::GUI::Project;

Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Popup.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use Biodiverse::Utilities qw/sort_list_with_tree_names_aa/;

use Gtk2;

our $VERSION = '4.1';
our $VERSION = '4.2';

use English qw { -no_match_vars };

Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/PopupObject.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Biodiverse::GUI::PopupObject;
use strict;
use warnings;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Gtk2;

Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/ProgressDialog.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use Time::HiRes qw/time/;
require Biodiverse::Config;
my $progress_update_interval = $Biodiverse::Config::progress_update_interval;

our $VERSION = '4.1';
our $VERSION = '4.2';

my $TRUE = 'TRUE';
my $FALSE = 'FALSE';
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Project.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use Ref::Util qw { :all };

use English ( -no_match_vars );

our $VERSION = '4.1';
our $VERSION = '4.2';

require Exporter;
use parent qw/Exporter Biodiverse::Common/;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/RemapGUI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use 5.010;
use strict;
use warnings;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Gtk2;
use Biodiverse::RemapGuesser qw/guess_remap/;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/SpatialParams.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use Carp;

use English qw { -no_match_vars };

our $VERSION = '4.1';
our $VERSION = '4.2';

use Glib;
use Gtk2;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Tabs/CalculationsTree.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use Biodiverse::Indices;
use Ref::Util qw { :all };
use Text::Wrapper;

our $VERSION = '4.1';
our $VERSION = '4.2';

#use Readonly;
my $i;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Tabs/Clustering.pm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use Biodiverse::GUI::Tabs::CalculationsTree;
use Biodiverse::Indices;
use Biodiverse::Utilities qw/sort_list_with_tree_names_aa/;

our $VERSION = '4.1';
our $VERSION = '4.2';

use Biodiverse::Cluster;
use Biodiverse::RegionGrower;
Expand Down
2 changes: 1 addition & 1 deletion lib/Biodiverse/GUI/Tabs/Labels.pm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use Biodiverse::GUI::Overlays;
use Biodiverse::Metadata::Parameter;
my $parameter_metadata_class = 'Biodiverse::Metadata::Parameter';

our $VERSION = '4.1';
our $VERSION = '4.2';

use parent qw {
Biodiverse::GUI::Tabs::Tab
Expand Down
Loading

0 comments on commit ebef082

Please sign in to comment.