Skip to content

Commit ac2a025

Browse files
committed
eolang (30jun26)
git-svn-id: svn://tug.org/texlive/trunk/Build/source@79513 c570f23f-e606-0410-a88d-b1316a301751
1 parent f5976d4 commit ac2a025

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

texk/texlive/linked_scripts/eolang/eolang.pl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/perl
2-
# SPDX-FileCopyrightText: Copyright (c) 2021-2025 Yegor Bugayenko
2+
# SPDX-FileCopyrightText: Copyright (c) 2021-2026 Yegor Bugayenko
33
# SPDX-License-Identifier: MIT
44

5-
# 0.23.0 2025/12/24
5+
# 0.23.1 2026-06-30
66
package eolang;
77

88
use warnings;
@@ -49,17 +49,17 @@ sub error {
4949
}
5050

5151
if (@ARGV+0 eq 0 or exists $args{'--help'} or exists $args{'-?'}) {
52-
info("This script helps embedding \\phiquation and \\phiq into .tex document\n\n" .
52+
info("This script helps embed \\phiquation and \\phiq into a .tex document\n\n" .
5353
"Usage:\n" .
5454
" eolang [<options>] <.tex input file path> <.tex output file path>\n\n" .
5555
"Options:\n" .
5656
" -v, --version Print the current version of the tool and exit\n" .
5757
" -?, --help Print this help screen\n" .
5858
" --verbose Print all possible debugging information\n" .
5959
" --tmpdir=path Temp directory with .tex files ('_eolang' by default)\n\n" .
60-
"If any issues, report to GitHub: https://github.com/yegor256/bibcop");
60+
"If any issues, report to GitHub: https://github.com/objectionary/eolang.sty");
6161
} elsif (exists $args{'--version'} or exists $args{'-v'}) {
62-
info('0.23.0 2025/12/24');
62+
info('0.23.1 2026-06-30');
6363
} else {
6464
my ($src, $target) = grep { not($_ =~ /^-.*$/) } @ARGV;
6565
if (not $src) {

0 commit comments

Comments
 (0)