From: Sergey Matveev Date: Thu, 1 Jul 2021 07:30:48 +0000 (+0300) Subject: Raise minimal required Go version X-Git-Tag: v7.1.0^2~14 X-Git-Url: http://www.git.cypherpunks.ru/?p=nncp.git;a=commitdiff_plain;h=946eab8babe268d465ae7592c42ef7cad415de9e Raise minimal required Go version --- diff --git a/doc/install.texi b/doc/install.texi index 3ca13b1..a8189f1 100644 --- a/doc/install.texi +++ b/doc/install.texi @@ -14,7 +14,7 @@ Possibly NNCP package already exists for your distribution: NNCP should run on any POSIX-compatible operating system. NNCP is written on @url{https://golang.org/, Go} programming language -and you have to install Go compiler 1.12+ version. @command{Make} (BSD +and you have to install Go compiler 1.13+ version. @command{Make} (BSD and GNU versions are fine) is recommended for convenient building. @url{https://www.gnu.org/software/texinfo/, Texinfo} is used for building documentation (although tarballs already include it). diff --git a/doc/news.ru.texi b/doc/news.ru.texi index c045d75..baa2310 100644 --- a/doc/news.ru.texi +++ b/doc/news.ru.texi @@ -5,6 +5,9 @@ @subsection Релиз 7.0.0 @itemize +@item +Минимальная требуемая версия Go 1.13. + @item Хэширование с BLAKE3 на базе деревьев Меркле (Merkle Tree Hashing, MTH) используется вместо BLAKE2b. Из-за этого, обратно @strong{несовместимое} diff --git a/doc/news.texi b/doc/news.texi index cc4eba9..63ed79a 100644 --- a/doc/news.texi +++ b/doc/news.texi @@ -7,6 +7,9 @@ See also this page @ref{Новости, on russian}. @section Release 7.0.0 @itemize +@item +Minimal required Go version 1.13. + @item Merkle Tree-based Hashing with BLAKE3 (MTH) is used instead of BLAKE2b. Because of that, there are backward @strong{incompatible} changes of diff --git a/src/go.mod b/src/go.mod index 3afd292..e84a8f4 100644 --- a/src/go.mod +++ b/src/go.mod @@ -16,4 +16,4 @@ require ( lukechampine.com/blake3 v1.1.5 ) -go 1.12 +go 1.13