From 8bd2fa4e821b3f6d1d10d0d9f54995708e6e03a1 Mon Sep 17 00:00:00 2001 From: Tobias Bossert Date: Sun, 28 Feb 2021 18:33:24 +0100 Subject: [PATCH] fix thread support detection for testing, Version++ --- CHANGES | 3 +++ README.md | 4 +++- VERSION | 2 +- lib/Wireguard/WGmeta/Index.pod | 5 ++++- t/concurrency_test.t | 6 ++++-- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 51e3c58..fb9d222 100644 --- a/CHANGES +++ b/CHANGES @@ -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 diff --git a/README.md b/README.md index 9a3eaa0..e430313 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 diff --git a/VERSION b/VERSION index 341cf11..7dff5b8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.0 \ No newline at end of file +0.2.1 \ No newline at end of file diff --git a/lib/Wireguard/WGmeta/Index.pod b/lib/Wireguard/WGmeta/Index.pod index dd234d0..8cefcb2 100644 --- a/lib/Wireguard/WGmeta/Index.pod +++ b/lib/Wireguard/WGmeta/Index.pod @@ -108,7 +108,10 @@ L - Configurations for all supported attribu =head1 AUTHORS -Stobib at cpan.orgE> +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 + +Stobib at cpan dot orgE> =head1 THANKS TO diff --git a/t/concurrency_test.t b/t/concurrency_test.t index 0222b58..31125ca 100644 --- a/t/concurrency_test.t +++ b/t/concurrency_test.t @@ -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; }; }