Support temporary extraction as a config parameter

Change-Id: Ie97601d373d705a307f4f1201081f10b15b4d725
diff --git a/Changes b/Changes
index 646b018..dc172e7 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
+0.43 2022-01-17
+        - Fix temporary extract handling when defined
+          in a config file.
+
 0.42 2022-01-11
         - Replaced Log4perl with Log::Any.
         - Ignore level < 0 structures in DeReKo, but support
diff --git a/Readme.pod b/Readme.pod
index 3009ba8..80a4d5f 100644
--- a/Readme.pod
+++ b/Readme.pod
@@ -277,7 +277,7 @@
 C<overwrite>, C<gzip>, C<jobs>, C<input-base>,
 C<token>, C<log>, C<cache>, C<cache-size>, C<cache-delete>, C<meta>,
 C<output>, C<koral>,
-C<tempary-extract>, C<sequential-extraction>,
+C<temporary-extract>, C<sequential-extraction>,
 C<base-sentences>, C<base-paragraphs>,
 C<base-pagebreaks>,
 C<skip> (semicolon separated), C<sigle>
@@ -574,7 +574,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2015-2021, L<IDS Mannheim|https://www.ids-mannheim.de/>
+Copyright (C) 2015-2022, L<IDS Mannheim|https://www.ids-mannheim.de/>
 
 Author: L<Nils Diewald|https://www.nils-diewald.de/>
 
diff --git a/lib/KorAP/XML/Krill.pm b/lib/KorAP/XML/Krill.pm
index 302f3b9..66f481d 100644
--- a/lib/KorAP/XML/Krill.pm
+++ b/lib/KorAP/XML/Krill.pm
@@ -16,7 +16,7 @@
 
 our @EXPORT_OK = qw(get_file_name get_file_name_from_glob);
 
-our $VERSION = '0.42';
+our $VERSION = '0.43';
 
 has 'path';
 has [qw/text_sigle doc_sigle corpus_sigle/];
diff --git a/script/korapxml2krill b/script/korapxml2krill
index b2533bc..a1dac4d 100644
--- a/script/korapxml2krill
+++ b/script/korapxml2krill
@@ -154,9 +154,12 @@
 #
 # 2021/10/11
 # - Introduced support for Gingko
+#
+# 2022/01/17
+# - Support for temporary extraction in config
 # ----------------------------------------------------------
 
-our $LAST_CHANGE = '2021/10/11';
+our $LAST_CHANGE = '2022/01/17';
 our $LOCAL = $FindBin::Bin;
 our $KORAL_VERSION = 0.03;
 our $VERSION_MSG = <<"VERSION";
@@ -246,7 +249,8 @@
   foreach (qw!output cache-size input-base token overwrite
               meta base-sentences base-paragraphs base-pagebreaks
               gzip to-tar log cache non-word-tokens
-              non-verbal-tokens sequential-extraction cache-init
+              non-verbal-tokens sequential-extraction
+              temporary-extract cache-init
               koral extract-dir jobs!) {
     my $underlined = $_ =~ tr/-/_/r;
     if (!defined($cfg{$underlined}) && defined $config{$_}) {
@@ -1579,7 +1583,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2015-2021, L<IDS Mannheim|https://www.ids-mannheim.de/>
+Copyright (C) 2015-2022, L<IDS Mannheim|https://www.ids-mannheim.de/>
 
 Author: L<Nils Diewald|https://www.nils-diewald.de/>