Skip to content

Commit

Permalink
fix thread support detection for testing, Version++
Browse files Browse the repository at this point in the history
  • Loading branch information
sirtoobii committed Feb 28, 2021
1 parent 3a330da commit 8bd2fa4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
0.2.1 2021-02-28 Tobias Bossert (tobib at cpan.org)
- fix: Concurrency-test threads detection

0.2.0 2021-02-28 Tobias Bossert (tobib at cpan.org)
- added: reload callbacks
- added: fqdn attr
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![](https://img.shields.io/cpan/v/Wireguard-WGmeta)

# wg-meta

An approach to add metadata to the main wireguard config, written in Perl.
Expand All @@ -15,7 +17,7 @@ An approach to add metadata to the main wireguard config, written in Perl.

## Installation

![https://metacpan.org/release/Wireguard-WGmeta](https://img.shields.io/cpan/v/Wireguard-WGmeta)
Probably the easiest way is through cpan: [https://metacpan.org/release/Wireguard-WGmeta](https://metacpan.org/release/Wireguard-WGmeta)

### Build from source

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.2.1
5 changes: 4 additions & 1 deletion lib/Wireguard/WGmeta/Index.pod
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,10 @@ L<Wireguard::WGmeta::ValidAttributes> - Configurations for all supported attribu

=head1 AUTHORS

S<Tobias Bossert E<lt>tobib at cpan.orgE<gt>>
Since there is a lot of spam flooding my mailbox, I had to put spam filtering in place. If you want to make sure
that your email gets delivered into my mailbox, include C<#im_not_a_bot#> in the B<subject!>

S<Tobias Bossert E<lt>tobib at cpan dot orgE<gt>>

=head1 THANKS TO

Expand Down
6 changes: 4 additions & 2 deletions t/concurrency_test.t
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ use constant TEST_DIR => $FindBin::Bin . '/test_data/';
my $THREADS_PRESENT;
BEGIN {
eval {
use threads;
use threads::shared;
require threads;
threads->import();
require threads::shared;
threads::shared->import();
$THREADS_PRESENT = 1;
};
}
Expand Down

0 comments on commit 8bd2fa4

Please sign in to comment.