diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-02-18 15:21:55 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2023-02-18 15:21:55 +0000 |
commit | bb4124a76938a092771250b455ad8f824da89504 (patch) | |
tree | b2d95e89eadf4055cff1e17f95c60433c7f50469 | |
parent | 3df7fa5edbd8dfb0942ca7657d0b9ad681a494a8 (diff) | |
download | s6-linux-utils-bb4124a76938a092771250b455ad8f824da89504.tar.gz s6-linux-utils-bb4124a76938a092771250b455ad8f824da89504.tar.xz s6-linux-utils-bb4124a76938a092771250b455ad8f824da89504.zip |
Prepare for 2.6.1.1; make sort locale-independent
Signed-off-by: Laurent Bercot <ska@appnovation.com>
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | doc/index.html | 2 | ||||
-rw-r--r-- | doc/upgrade.html | 6 | ||||
-rw-r--r-- | package/info | 2 | ||||
-rwxr-xr-x | tools/gen-multicall.sh | 2 |
5 files changed, 16 insertions, 2 deletions
diff --git a/NEWS b/NEWS index 975e523..690aed2 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,11 @@ Changelog for s6-linux-utils. +In 2.6.1.1 +---------- + + - Bugfixes. + + In 2.6.1.0 ---------- diff --git a/doc/index.html b/doc/index.html index 898b002..edb04de 100644 --- a/doc/index.html +++ b/doc/index.html @@ -63,7 +63,7 @@ library. </li> <ul> <li> The current released version of s6-linux-utils is -<a href="s6-linux-utils-2.6.1.0.tar.gz">2.6.1.0</a>. </li> +<a href="s6-linux-utils-2.6.1.1.tar.gz">2.6.1.1</a>. </li> <li> Alternatively, you can checkout a copy of the <a href="//git.skarnet.org/cgi-bin/cgit.cgi/s6-linux-utils/">s6-linux-utils git repository</a>: diff --git a/doc/upgrade.html b/doc/upgrade.html index eaa7187..7a9c0c4 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -18,6 +18,12 @@ <h1> What has changed in s6-linux-utils </h1> +<h2> in 2.6.1.1 </h2> + +<ul> + <li> No functional changes. </li> +</ul> + <h2> in 2.6.1.0 </h2> <ul> diff --git a/package/info b/package/info index 62c130a..600a6b1 100644 --- a/package/info +++ b/package/info @@ -1,4 +1,4 @@ package=s6-linux-utils -version=2.6.1.0 +version=2.6.1.1 category=admin package_macro_name=S6_LINUX_UTILS diff --git a/tools/gen-multicall.sh b/tools/gen-multicall.sh index 843f4df..7f820c3 100755 --- a/tools/gen-multicall.sh +++ b/tools/gen-multicall.sh @@ -1,5 +1,7 @@ #!/bin/sh -e +LC_ALL=C ; export LC_ALL + P="$1" p=`echo $P | tr - _` |