From ba57f6f732c8cd32f3b81b8189b5cec7fb7219d9 Mon Sep 17 00:00:00 2001 From: Sebastian Neubauer Date: Mon, 7 Sep 2026 11:46:38 +0200 Subject: [PATCH] Update Agility SDK The new version fixes some bugs --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 2 +- flake.nix | 4 ++-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36fb6b6..adc6e14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.2] - 2026-09-07 +### Changed +- Update Agility SDK to 1.721.3-preview to include some fixes + ## [0.1.1] - 2026-07-27 ### Fixed - Fix the encoded version of the Agility SDK (fixes the agility version not starting) diff --git a/Cargo.lock b/Cargo.lock index 0d952b0..77ccde5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -710,7 +710,7 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "smoldr" -version = "0.1.0" +version = "0.1.2" dependencies = [ "bitflags", "clap", diff --git a/Cargo.toml b/Cargo.toml index 865fc5b..e7ac865 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "smoldr" -version = "0.1.0" +version = "0.1.2" license = "MIT OR Apache-2.0" edition = "2021" diff --git a/flake.nix b/flake.nix index 3a5d95b..5e47537 100644 --- a/flake.nix +++ b/flake.nix @@ -56,11 +56,11 @@ # The version passed to both, the download and the build agilitySdkVersion = "721"; - agilitySdkVersionString = "1.${agilitySdkVersion}.1-preview"; + agilitySdkVersionString = "1.${agilitySdkVersion}.3-preview"; agilityPkgName = "Microsoft.Direct3D.D3D12"; agilitySdk = pkgs.fetchurl { url = "https://www.nuget.org/api/v2/package/${agilityPkgName}/${agilitySdkVersionString}"; - hash = "sha256-bWA4thXoLxUPT0SXkeszrHS9uXq6nurHDrn7Y8shpVM="; + hash = "sha256-ATG84eS6zj/AjAMBjCmgnt4lcLJjchxkSbDsdXYqsi0="; }; vkd3d-protonVersion = "3.0.1";