b041f6
From 593fb3d6c0fcff266729d1d497d931e7e3ad9a83 Mon Sep 17 00:00:00 2001
b041f6
From: Jitka Plesnikova <jplesnik@redhat.com>
b041f6
Date: Thu, 24 May 2018 10:20:55 +0200
b041f6
Subject: [PATCH] Upgrade to 0.95
b041f6
b041f6
---
b041f6
 lib/Filter/Simple.pm |  6 ++----
b041f6
 t/no.t               | 13 +++++++++++++
b041f6
 2 files changed, 15 insertions(+), 4 deletions(-)
b041f6
 create mode 100644 t/no.t
b041f6
b041f6
diff --git a/lib/Filter/Simple.pm b/lib/Filter/Simple.pm
b041f6
index 082fe95..1dcf3c8 100644
b041f6
--- a/lib/Filter/Simple.pm
b041f6
+++ b/lib/Filter/Simple.pm
b041f6
@@ -2,14 +2,12 @@ package Filter::Simple;
b041f6
 
b041f6
 use Text::Balanced ':ALL';
b041f6
 
b041f6
-use vars qw{ $VERSION @EXPORT };
b041f6
-
b041f6
-$VERSION = '0.94';
b041f6
+our $VERSION = '0.95';
b041f6
 
b041f6
 use Filter::Util::Call;
b041f6
 use Carp;
b041f6
 
b041f6
-@EXPORT = qw( FILTER FILTER_ONLY );
b041f6
+our @EXPORT = qw( FILTER FILTER_ONLY );
b041f6
 
b041f6
 
b041f6
 sub import {
b041f6
diff --git a/t/no.t b/t/no.t
b041f6
new file mode 100644
b041f6
index 0000000..8980eae
b041f6
--- /dev/null
b041f6
+++ b/t/no.t
b041f6
@@ -0,0 +1,13 @@
b041f6
+BEGIN {
b041f6
+    unshift @INC, 't/lib/';
b041f6
+}
b041f6
+
b041f6
+print "1..2\n";
b041f6
+
b041f6
+use Filter::Simple::FilterTest qr/ok/ => "not ok", pass => "fail";
b041f6
+no Filter::Simple::FilterTest;
b041f6
+
b041f6
+sub pass { print "ok ", $_[0], "\n" }
b041f6
+
b041f6
+print "ok 1\n";
b041f6
+("pa"."ss")->(2);
b041f6
-- 
b041f6
2.14.3
b041f6