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