From 7dbee75ad27079d9865dc478cd52f38ab623d396 Mon Sep 17 00:00:00 2001 From: moparisthebest Date: Tue, 15 Dec 2020 22:24:43 -0500 Subject: [PATCH] curl 7.74.0 --- README.md | 12 ++++++------ build.sh | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 8b1ee44..96c7142 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,12 @@ These are a couple simple scripts to build a fully static curl binary using alpine linux docker containers. Currently it is a featureful build with OpenSSL, libssh2, nghttp2, and zlib, supporting most protocols. Tweak configure options in [build.sh](build.sh#L50) if you need something else (and/or suggest or PR). -Grab the latest release (curl 7.73.0) from one of these links, by CPU architecture: - - [curl-amd64](https://github.com/moparisthebest/static-curl/releases/download/v7.73.0/curl-amd64) - - [curl-i386](https://github.com/moparisthebest/static-curl/releases/download/v7.73.0/curl-i386) - - [curl-aarch64](https://github.com/moparisthebest/static-curl/releases/download/v7.73.0/curl-aarch64) - - [curl-armv7](https://github.com/moparisthebest/static-curl/releases/download/v7.73.0/curl-armv7) - - [curl-ppc64le](https://github.com/moparisthebest/static-curl/releases/download/v7.73.0/curl-ppc64le) +Grab the latest release (curl 7.74.0) from one of these links, by CPU architecture: + - [curl-amd64](https://github.com/moparisthebest/static-curl/releases/download/v7.74.0/curl-amd64) + - [curl-i386](https://github.com/moparisthebest/static-curl/releases/download/v7.74.0/curl-i386) + - [curl-aarch64](https://github.com/moparisthebest/static-curl/releases/download/v7.74.0/curl-aarch64) + - [curl-armv7](https://github.com/moparisthebest/static-curl/releases/download/v7.74.0/curl-armv7) + - [curl-ppc64le](https://github.com/moparisthebest/static-curl/releases/download/v7.74.0/curl-ppc64le) Static binaries for windows are provided directly by [curl](https://curl.haxx.se/windows/) itself. diff --git a/build.sh b/build.sh index 9e2fa2f..02afd65 100755 --- a/build.sh +++ b/build.sh @@ -5,7 +5,7 @@ # docker run --rm -v $(pwd):/tmp -w /tmp -e ARCH=aarch64 multiarch/alpine:aarch64-latest-stable /tmp/build.sh # docker run --rm -v $(pwd):/tmp -w /tmp -e ARCH=ARCH_HERE ALPINE_IMAGE_HERE /tmp/build.sh -CURL_VERSION='7.73.0' +CURL_VERSION='7.74.0' [ "$1" != "" ] && CURL_VERSION="$1"