Bump version to v2.7.2

Change-Id: If1a4b2fe6c4e2bc9e7d6ffc98f598d654579cf1e
diff --git a/Changes b/Changes
index 86b44fb..45d24ca 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,11 @@
+2.7.2 2026-03-05
+        - Fix XML parser error caused by elements (e.g. <ref>) whose
+          attributes span multiple lines.
+        - Progress bar now writes directly to /dev/tty (CON on Windows)
+          instead of stderr, so it is not captured by log redirection.
+          Automatically disabled when no controlling terminal is available
+          (e.g. detached container or CI environment).
+
 2.7.1 2026-03-05
         - Fix parser error when closing body and text tags
           appear on the same line.
diff --git a/Readme.pod b/Readme.pod
index 28bf016..5bdb1d8 100644
--- a/Readme.pod
+++ b/Readme.pod
@@ -104,7 +104,7 @@
 
   $ docker build -t korap/tei2korapxml:large .
   $ mint --crt-api-version 1.46 build --http-probe=false \
-    --exec='PERL5LIB=/tei2korapxml/script/tei2korapxml -v || test $? -eq 2 && java -jar /tei2korapxml/share/KorAP-Tokenizer-2.3.0-standalone.jar -V' \
+    --exec='PERL5LIB=/tei2korapxml/script/tei2korapxml -v || test $? -eq 2 && java -jar /tei2korapxml/share/KorAP-Tokenizer-*-standalone.jar -V' \
     --include-path=/tei2korapxml/lib --include-path=/usr/local/share/perl5 \
     --include-path=/usr/share/perl5 --include-path=/usr/lib/perl5 \
     --tag korap/tei2korapxml:latest \
diff --git a/lib/KorAP/XML/TEI/Tokenizer/KorAP.pm b/lib/KorAP/XML/TEI/Tokenizer/KorAP.pm
index 8bb8d28..ab91d57 100644
--- a/lib/KorAP/XML/TEI/Tokenizer/KorAP.pm
+++ b/lib/KorAP/XML/TEI/Tokenizer/KorAP.pm
@@ -4,7 +4,7 @@
 use warnings;
 use File::Share ':all';
 
-our $VERSION = '2.7.1';
+our $VERSION = '2.7.2';
 my $MIN_JAVA_VERSION = 21;
 
 use constant {
diff --git a/script/tei2korapxml b/script/tei2korapxml
index 2070782..3d35077 100755
--- a/script/tei2korapxml
+++ b/script/tei2korapxml
@@ -25,7 +25,7 @@
 use KorAP::XML::TEI::Header;
 use KorAP::XML::TEI::Inline;
 
-our $VERSION = '2.7.1';
+our $VERSION = '2.7.2';
 
 our $VERSION_MSG = "\ntei2korapxml - v$VERSION\n";