Bumping version to 1.61
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Parser / Storable.pm
index 0056f25..6d0776c 100644 (file)
@@ -20,17 +20,17 @@ the data into a database tables or graphs.
 =cut
 
 use strict;
-use vars qw($DEBUG $VERSION @EXPORT_OK);
+use warnings;
+our $VERSION = '1.61';
+
+our $DEBUG;
 $DEBUG = 0 unless defined $DEBUG;
-$VERSION = '1.59';
 
 use Storable;
-use Exporter;
 use SQL::Translator::Utils qw(debug normalize_name);
 
 use base qw(Exporter);
-
-@EXPORT_OK = qw(parse);
+our @EXPORT_OK = qw(parse);
 
 sub parse {
     my ($translator, $data) = @_;