From: Sergey Matveev Date: Wed, 13 Jan 2021 15:04:08 +0000 (+0300) Subject: Try to fix blake3:cpu_darwin.go X-Git-Tag: v0.12.2~1 X-Git-Url: http://www.git.cypherpunks.ru/?p=goredo.git;a=commitdiff_plain;h=7e71a1e965ccf439d484bdaef5afb4887ee8baf6 Try to fix blake3:cpu_darwin.go --- diff --git a/doc/news.texi b/doc/news.texi index 0f54ab9..c25d6c0 100644 --- a/doc/news.texi +++ b/doc/news.texi @@ -1,6 +1,13 @@ @node News @unnumbered News +@anchor{Release 0.12.2} +@section Release 0.12.2 +@itemize +@item + Try to fix failing @code{lukechampine.com/blake3} on arm64 macOS. +@end itemize + @anchor{Release 0.12.1} @section Release 0.12.1 @itemize diff --git a/makedist.sh b/makedist.sh index 4eef737..637b182 100755 --- a/makedist.sh +++ b/makedist.sh @@ -72,6 +72,11 @@ modvendor -v -copy="**/*_test.go **/private-gen.go **/main.go **/vectors.json ** rm -rf vendor/golang.org/x/sys/plan9 vendor/golang.org/x/sys/windows find vendor/golang.org/x/sys -name "*_test.go" -delete find . \( -name .gitignore -o -name .travis.yml \) -delete + +rm vendor/lukechampine.com/blake3/cpu_darwin.go +sed -n -i.tmp '3,$p' vendor/lukechampine.com/blake3/cpu.go +rm vendor/lukechampine.com/blake3/cpu.go.tmp + cd .. ######################################################################## diff --git a/usage.go b/usage.go index 5097159..bfcb213 100644 --- a/usage.go +++ b/usage.go @@ -26,7 +26,7 @@ import ( ) const ( - Version = "0.12.1" + Version = "0.12.2" Warranty = `This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License.