From: Sergey Matveev Date: Fri, 26 Mar 2021 09:15:34 +0000 (+0300) Subject: Prepare for mini release X-Git-Tag: v6.2.1^2 X-Git-Url: http://www.git.cypherpunks.ru/?p=nncp.git;a=commitdiff_plain;h=2d07c26c6da209c59ed37f798ce09c66bf1d3431 Prepare for mini release --- diff --git a/doc/news.ru.texi b/doc/news.ru.texi index a35e296..6ca08c7 100644 --- a/doc/news.ru.texi +++ b/doc/news.ru.texi @@ -1,6 +1,15 @@ @node Новости @section Новости +@node Релиз 6.2.1 +@subsection Релиз 6.2.1 +@itemize + +@item +В трёх местах сообщений журналов по ошибке остались лишние @code{%s}. + +@end itemize + @node Релиз 6.2.0 @subsection Релиз 6.2.0 @itemize diff --git a/doc/news.texi b/doc/news.texi index 193b625..e128886 100644 --- a/doc/news.texi +++ b/doc/news.texi @@ -3,6 +3,15 @@ See also this page @ref{Новости, on russian}. +@node Release 6.2.1 +@section Release 6.2.1 +@itemize + +@item +Three places in logs contained excess @code{%s}. + +@end itemize + @node Release 6.2.0 @section Release 6.2.0 @itemize diff --git a/src/nncp.go b/src/nncp.go index b6f6d1a..1a933a0 100644 --- a/src/nncp.go +++ b/src/nncp.go @@ -40,7 +40,7 @@ along with this program. If not, see .` const Base32Encoded32Len = 52 var ( - Version string = "6.2.0" + Version string = "6.2.1" Base32Codec *base32.Encoding = base32.StdEncoding.WithPadding(base32.NoPadding) )