From 3ad09b01e78cc63612629e435bce6506e05d9253 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Wed, 13 Jan 2021 20:52:39 +0300 Subject: [PATCH] blake3 with possible darwin fix --- doc/news.texi | 8 ++++++++ go.mod | 2 +- go.sum | 4 ++-- makedist.sh | 5 ----- usage.go | 2 +- 5 files changed, 12 insertions(+), 9 deletions(-) diff --git a/doc/news.texi b/doc/news.texi index 26c5805..0be2b80 100644 --- a/doc/news.texi +++ b/doc/news.texi @@ -1,6 +1,14 @@ @node News @unnumbered News +@anchor{Release 0.12.3} +@section Release 0.12.3 +@itemize +@item + Use an updated @code{lukechampine.com/blake3} with possibly working + arm64 macOS fix. +@end itemize + @anchor{Release 0.12.2} @section Release 0.12.2 @itemize diff --git a/go.mod b/go.mod index c0b4c49..37a1412 100644 --- a/go.mod +++ b/go.mod @@ -7,5 +7,5 @@ require ( go.cypherpunks.ru/tai64n v0.2.1 golang.org/x/sys v0.0.0-20210108172913-0df2131ae363 golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf - lukechampine.com/blake3 v1.1.4 + lukechampine.com/blake3 v1.1.5 ) diff --git a/go.sum b/go.sum index 03622ce..0738672 100644 --- a/go.sum +++ b/go.sum @@ -9,5 +9,5 @@ golang.org/x/sys v0.0.0-20210108172913-0df2131ae363 h1:wHn06sgWHMO1VsQ8F+KzDJx/J golang.org/x/sys v0.0.0-20210108172913-0df2131ae363/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf h1:MZ2shdL+ZM/XzY3ZGOnh4Nlpnxz5GSOhOmtHo3iPU6M= golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -lukechampine.com/blake3 v1.1.4 h1:cVl4fhMGfCaCFrs4sBb8R/iEMeL0g4CfQp/sAHBDxOI= -lukechampine.com/blake3 v1.1.4/go.mod h1:hE8RpzdO8ttZ7446CXEwDP1eu2V4z7stv0Urj1El20g= +lukechampine.com/blake3 v1.1.5 h1:hsACfxWvLdGmjYbWGrumQIphOvO+ZruZehWtgd2fxoM= +lukechampine.com/blake3 v1.1.5/go.mod h1:hE8RpzdO8ttZ7446CXEwDP1eu2V4z7stv0Urj1El20g= diff --git a/makedist.sh b/makedist.sh index 7889d49..ad38c99 100755 --- a/makedist.sh +++ b/makedist.sh @@ -72,11 +72,6 @@ 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 bfcb213..5aadc1c 100644 --- a/usage.go +++ b/usage.go @@ -26,7 +26,7 @@ import ( ) const ( - Version = "0.12.2" + Version = "0.12.3" 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. -- 2.44.0