Removed korapxml2krill_dir
Change-Id: I299e0f9d54722ee405a02d9eb803294cef279e9f
diff --git a/Changes b/Changes
index 2d56a7f..4fb418e 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+0.13 2016-03-01
+ - Removed korapxml2krill_dir.
+
0.12 2016-02-28
- Added extract method to korapxml2krill.
- Fixed Mate/Dependency.
@@ -6,7 +9,7 @@
(i.e. character offsets end before tokens have started).
0.11 2016-02-23
- - Merged korap2krill and korap2krill_dir.
+ - Merged korapxml2krill and korapxml2krill_dir.
0.10 2016-02-15
- Added EXPERIMENTAL support for parallel jobs.
diff --git a/MANIFEST b/MANIFEST
index fc4299e..fa79950 100755
--- a/MANIFEST
+++ b/MANIFEST
@@ -673,7 +673,6 @@
t/corpus/WDD/G27/38989/mate/pipeline/parsed.txt
t/corpus/WDD/G27/38989/mate/tokenSpans/number_tokenSpans.xml
script/korapxml2krill
-script/korapxml2krill_dir
Changes
LICENSE
Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
index 377a3db..17beeba 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -40,5 +40,5 @@
't/sgbr/*.t ' .
't/real/*.t'
},
- EXE_FILES => ['script/korapxml2krill', 'script/korapxml2krill_dir']
+ EXE_FILES => ['script/korapxml2krill']
);
diff --git a/lib/KorAP/XML/Krill.pm b/lib/KorAP/XML/Krill.pm
index 18a12b1..1a0980d 100644
--- a/lib/KorAP/XML/Krill.pm
+++ b/lib/KorAP/XML/Krill.pm
@@ -18,7 +18,7 @@
# Due to the kind of processing, processed metadata may be stored in
# a multiprocess cache instead.
-our $VERSION = '0.12';
+our $VERSION = '0.13';
our @ATTR = qw/text_sigle
doc_sigle
diff --git a/script/korapxml2krill_dir b/script/korapxml2krill_dir
deleted file mode 100644
index 0b010db..0000000
--- a/script/korapxml2krill_dir
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use lib 'lib';
-use FindBin;
-
-our $LOCAL = $FindBin::Bin;
-our @ARGV;
-
-warn "korapxml2krill_dir is DEPRECATED. Please use korapxml2krill";
-system("perl $LOCAL/korapxml2krill archive " . join(' ', @ARGV));
-
-__END__