Skip to content

Commit

Permalink
Update components
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed Apr 1, 2024
1 parent 834bdd0 commit 4b3b48d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ For a detailed view of what has changed, refer to the {uri-project}/commits/main

== Unreleased

* Bundle Docker Buildx 0.13.0
* Update Docker Engine to 26.0.0
* Update Docker Compose to 2.26.1
* Bundle Docker Buildx 0.13.1

== 1.3.0 (2024-03-10) - @slonopotamus

Expand Down
12 changes: 6 additions & 6 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ use const_format::formatcp;
use sha2::{Digest, Sha256};
use zip::ZipArchive;

const DOCKER_VERSION: &str = "25.0.4";
const DOCKER_VERSION: &str = "26.0.0";
const DOCKER_URL: &str =
formatcp!("https://download.docker.com/win/static/stable/x86_64/docker-{DOCKER_VERSION}.zip");
const DOCKER_SHA: &str = "7ef75de357525b19c6f60098cba75571aa286eb56206cda121c5693d63d28386";
const DOCKER_SHA: &str = "1145ee20bb88e25d3fd42d5d00e07488d69b54bc380bf51692517e4e5021c1e0";

const DOCKER_BUILDX_VERSION: &str = "0.13.0";
const DOCKER_BUILDX_VERSION: &str = "0.13.1";
const DOCKER_BUILDX_URL: &str =
formatcp!("https://github.com/docker/buildx/releases/download/v{DOCKER_BUILDX_VERSION}/buildx-v{DOCKER_BUILDX_VERSION}.windows-amd64.exe");
const DOCKER_BUILDX_SHA: &str = "001dd8c707862d7c7a7bc17ebb024922ee304bddad1bca11da5b3b3ff18effa6";
const DOCKER_BUILDX_SHA: &str = "6b113e84cbc3cd645646aa82f00a7f7d3737cc10375b4341e0aca0de0c997c75";

const DOCKER_COMPOSE_VERSION: &str = "2.24.7";
const DOCKER_COMPOSE_VERSION: &str = "2.26.1";
const DOCKER_COMPOSE_URL: &str = formatcp!("https://github.com/docker/compose/releases/download/v{DOCKER_COMPOSE_VERSION}/docker-compose-windows-x86_64.exe");
const DOCKER_COMPOSE_SHA: &str = "1a5ffa12cff51a65f4e5e8874ed46b0783cfbc8f5ef837f5b9523decf1afd1d0";
const DOCKER_COMPOSE_SHA: &str = "d8a386d375ef26a77be0bee97516b0287d93acafb3976806f42e2b76c6904125";

const WINCRED_VERSION: &str = "0.8.1";
const WINCRED_URL: &str = formatcp!("https://github.com/docker/docker-credential-helpers/releases/download/v{WINCRED_VERSION}/docker-credential-wincred-v{WINCRED_VERSION}.windows-amd64.exe");
Expand Down

0 comments on commit 4b3b48d

Please sign in to comment.