go.mod | 2 +- go.sum | 4 ++-- gogost.go | 2 +- makedist | 3 ++- news.texi | 4 ++++ www.do | 2 +- diff --git a/go.mod b/go.mod index ac819c68740257ab55bab420af32f1acd3f1e9440dcd846323a05f1fde1e32d2..ceb7e88b5ce661f8bf769727192460a7a0fce492bb6a7d544365d09019ec15ed 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module go.cypherpunks.ru/gogost/v5 go 1.20 -require golang.org/x/crypto v0.6.0 +require golang.org/x/crypto v0.11.0 diff --git a/go.sum b/go.sum index 4534fe9d1a044801e1bcb627d3a2d96e51e4d66d8829b2e4adc1263649ae9950..f35354c23757073108b27e4a5becd29902bc531bf71883402db858b0cc92b1b8 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -golang.org/x/crypto v0.6.0 h1:qfktjS5LUO+fFKeJXZ+ikTRijMmljikvG68fpMMruSc= -golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= +golang.org/x/crypto v0.11.0 h1:6Ewdq3tDic1mg5xRO4milcWCfMVQhI4NkqWWvqejpuA= +golang.org/x/crypto v0.11.0/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIio= diff --git a/gogost.go b/gogost.go index 12cf6e8a0f9c91a0f8ee95060c8395d108b984f6caae3ba404b8fea439b28ac0..2423ab0046daa6d4a6364e1739d4498e4de9c666d98f924eb6223bf727dc7a3d 100644 --- a/gogost.go +++ b/gogost.go @@ -1,4 +1,4 @@ // Pure Go GOST cryptographic functions library. package gogost -const Version = "5.11.0" +const Version = "5.12.0" diff --git a/makedist b/makedist index fc47c8aa29c428216d92bd80bbd7980de9901786a5c2f9b0420577904c90d934..94c2fad810796b69877d981859ea282dc3c2d77bf6aceb5797b63c531aca4bf7 100755 --- a/makedist +++ b/makedist @@ -1,11 +1,12 @@ #!/bin/sh -ex +PATH=$HOME/work/meta4ra/contrib:$PATH cur=$(pwd) tmp=$(mktemp -d) release=$1 [ -n "$release" ] -redo-ifchange streebog256 +[ -x streebog256 ] || go build -o streebog256 ./cmd/streebog256 git clone . $tmp/gogost-$release cd $tmp/gogost-$release git checkout v$release diff --git a/news.texi b/news.texi index 735e1b3683be050e923857f98ef94278e217cb08053cc0b25938cb4b26b077ce..c43952e380bc1d3fb3fd10583b1c14114389fb1f7bb928d46713ce1d919744a3 100644 --- a/news.texi +++ b/news.texi @@ -3,6 +3,10 @@ @unnumbered News @table @strong +@anchor{Release 5.12.0} +@item 5.12.0 +Updated dependencies. + @anchor{Release 5.11.0} @item 5.11.0 You can check if public key is on curve with diff --git a/www.do b/www.do index b6f06a89baff5565bbabdb6b288ea498aa99ca18cc33a56b74dc9cfbb5d858a6..1bceebaf11a53fee77e036c8b33c7f9aec4dc5d80b1a49ea3d062b83888b2723 100644 --- a/www.do +++ b/www.do @@ -2,7 +2,7 @@ redo-ifchange *.texi html=gogost.html rm -f $html/*.html ${MAKEINFO:-makeinfo} --html \ - -D "VERSION `./VERSION`" \ + -D "VERSION `./version`" \ --set-customization-variable NO_CSS=1 \ --set-customization-variable SECTION_NAME_IN_TITLE=1 \ --set-customization-variable TREE_TRANSFORMATIONS=complete_tree_nodes_menus \