Skip to content

Commit

Permalink
version++
Browse files Browse the repository at this point in the history
  • Loading branch information
sirtoobii committed Jul 6, 2021
1 parent 425a323 commit e157e7e
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .debian/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: wg-meta
Version: 0.3.0
Version: 0.3.1
Section: base
Priority: optional
Architecture: all
Expand Down
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.3.1 2021-07-06 Tobias Bossert (tobib at cpan.org)
- Improved doc
- fix: concurrency test -> added small delay between writes

0.3.0 2021-07-03 Tobias Bossert (tobib at cpan.org)
- changed: CLI: Seamless support for custom attributes (set and addpeer)
- added: CLI: Ability to remove peers
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.3.1
2 changes: 1 addition & 1 deletion bin/wg-meta
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ use experimental 'signatures';
use Wireguard::WGmeta::Cli::Router;
use Wireguard::WGmeta::Cli::TerminalHelpers;

our $VERSION = "0.3.0";
our $VERSION = "0.3.1";

local $SIG{__WARN__} = sub($message) {
prettify_message($message, 1);
Expand Down
2 changes: 1 addition & 1 deletion lib/Wireguard/WGmeta.pm
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ use strict;
use warnings FATAL => 'all';
package Wireguard::WGmeta;

our $VERSION = "0.3.0"; # Do not change manually
our $VERSION = "0.3.1"; # Do not change manually

1;
2 changes: 1 addition & 1 deletion lib/Wireguard/WGmeta/Cli/Router.pm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use Wireguard::WGmeta::Cli::Commands::Remove;
use base 'Exporter';
our @EXPORT = qw(route_command);

our $VERSION = "0.3.0";
our $VERSION = "0.3.1";

=head2 route_command($ref_list_input_args)
Expand Down
2 changes: 1 addition & 1 deletion lib/Wireguard/WGmeta/Parser/Conf.pm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ use constant INTERNAL_KEY_PREFIX => 'int_';
use base 'Exporter';
our @EXPORT = qw(parse_raw_wg_config INTERNAL_KEY_PREFIX);

our $VERSION = "0.3.0";
our $VERSION = "0.3.1";

=head3 parse_raw_wg_config($file_content, $on_every_value, $on_new_section [, $skip, $wg_meta_prefix, $wg_disabled_prefix])
Expand Down
2 changes: 1 addition & 1 deletion lib/Wireguard/WGmeta/Parser/Middleware.pm
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use Wireguard::WGmeta::Utils;
use base 'Exporter';
our @EXPORT = qw(parse_wg_config2 create_wg_config2);

our $VERSION = "0.3.0";
our $VERSION = "0.3.1";

=head3 parse_wg_config2($config_file_content, $interface_name [, $wg_meta_prefix, $disabled_prefix, $use_checksum])
Expand Down
2 changes: 1 addition & 1 deletion lib/Wireguard/WGmeta/Parser/Show.pm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use experimental 'signatures';
use base 'Exporter';
our @EXPORT = qw(wg_show_dump_parser);

our $VERSION = "0.3.0"; # do not change manually, this variable is updated when calling make
our $VERSION = "0.3.1"; # do not change manually, this variable is updated when calling make


=head3 wg_show_dump_parser($input)
Expand Down
2 changes: 1 addition & 1 deletion lib/Wireguard/WGmeta/ValidAttributes.pm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use experimental 'signatures';

use Wireguard::WGmeta::Validator;

our $VERSION = "0.3.0";
our $VERSION = "0.3.1";

=head1 ATTRIBUTE TYPES
Expand Down
2 changes: 1 addition & 1 deletion lib/Wireguard/WGmeta/Wrapper/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ use Wireguard::WGmeta::ValidAttributes;
use Wireguard::WGmeta::Utils;
use Wireguard::WGmeta::Parser::Conf qw(INTERNAL_KEY_PREFIX);

our $VERSION = "0.3.0"; # do not change manually, this variable is updated when calling make
our $VERSION = "0.3.1"; # do not change manually, this variable is updated when calling make

use constant FALSE => 0;
use constant TRUE => 1;
Expand Down
2 changes: 1 addition & 1 deletion lib/Wireguard/WGmeta/Wrapper/ConfigT.pm
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ use constant FALSE => 0;
use constant TRUE => 1;
use constant INTEGRITY_HASH_SALT => 'wefnwioefh9032ur3';

our $VERSION = "0.3.0"; # do not change manually, this variable is updated when calling make
our $VERSION = "0.3.1"; # do not change manually, this variable is updated when calling make

=head3 is_valid_interface($interface)
Expand Down
2 changes: 1 addition & 1 deletion lib/Wireguard/WGmeta/Wrapper/Show.pm
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use warnings FATAL => 'all';
use experimental 'signatures';


our $VERSION = "0.3.0";
our $VERSION = "0.3.1";

use constant FALSE => 0;
use constant TRUE => 1;
Expand Down

0 comments on commit e157e7e

Please sign in to comment.