diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2022-06-13 09:08:04 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2022-06-13 09:08:04 +0000 |
commit | 5fefe7c3ba4aa2a44bbd4fc61508399a8c391c75 (patch) | |
tree | 32befe939d17f854d4d76fbb137e6bb1532e10cd | |
parent | 8d3e4e8c12984565ca30fe58c4612c8a85bc4d43 (diff) | |
download | s6-portable-utils-5fefe7c3ba4aa2a44bbd4fc61508399a8c391c75.tar.gz s6-portable-utils-5fefe7c3ba4aa2a44bbd4fc61508399a8c391c75.tar.xz s6-portable-utils-5fefe7c3ba4aa2a44bbd4fc61508399a8c391c75.zip |
Prepare for 2.2.5.0
Signed-off-by: Laurent Bercot <ska@appnovation.com>
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | doc/index.html | 2 | ||||
-rw-r--r-- | doc/upgrade.html | 2 | ||||
-rw-r--r-- | package/info | 2 | ||||
-rw-r--r-- | src/skaembutils/s6-test.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/NEWS b/NEWS index a15ed67..193a44d 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ Changelog for s6-portable-utils. -In 2.2.4.1 +In 2.2.5.0 ---------- - Adaptation to skalibs-2.12.0.0. diff --git a/doc/index.html b/doc/index.html index 9caa81a..7c15433 100644 --- a/doc/index.html +++ b/doc/index.html @@ -90,7 +90,7 @@ library. </li> <ul> <li> The current released version of s6-portable-utils is -<a href="s6-portable-utils-2.2.4.1.tar.gz">2.2.4.1</a>. </li> +<a href="s6-portable-utils-2.2.5.0.tar.gz">2.2.5.0</a>. </li> <li> Alternatively, you can checkout a copy of the <a href="//git.skarnet.org/cgi-bin/cgit.cgi/s6-portable-utils/">s6-portable-utils git repository</a>: diff --git a/doc/upgrade.html b/doc/upgrade.html index afe59a4..213e433 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -18,7 +18,7 @@ <h1> What has changed in s6-portable-utils </h1> -<h2> in 2.2.4.1 </h2> +<h2> in 2.2.5.0 </h2> <ul> <li> <a href="//skarnet.org/software/skalibs/">skalibs</a> diff --git a/package/info b/package/info index d69da52..3dce08c 100644 --- a/package/info +++ b/package/info @@ -1,4 +1,4 @@ package=s6-portable-utils -version=2.2.4.1 +version=2.2.5.0 category=admin package_macro_name=S6_PORTABLE_UTILS diff --git a/src/skaembutils/s6-test.c b/src/skaembutils/s6-test.c index 4bbd5ee..d9b74e1 100644 --- a/src/skaembutils/s6-test.c +++ b/src/skaembutils/s6-test.c @@ -505,7 +505,7 @@ static int run (struct node const *tree, unsigned int root) { char buf[256] ; regerror(r, &re, buf, 256) ; - strerr_diefu5x(r == REG_ESPACE ? 111 : 100, "compile ", tree[tree[root].arg2].data, " into a", " regular expression: ", buf) ; + strerr_diefu4x(r == REG_ESPACE ? 111 : 100, "compile ", tree[tree[root].arg2].data, " into a regular expression: ", buf) ; } r = regexec(&re, tree[tree[root].arg1].data, 0, 0, 0) ; regfree(&re) ; |