From 22e5104a411d9ff83643fb5d06f87d0f0b4e34c7 Mon Sep 17 00:00:00 2001 From: Varun Narravula Date: Thu, 11 Dec 2025 17:50:16 -0800 Subject: [PATCH 1/2] fix(nix): use correct hash for vendored deps --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 7802eae..0da1fed 100644 --- a/flake.nix +++ b/flake.nix @@ -35,7 +35,7 @@ inherit version; src = pkgs.nix-gitignore.gitignoreSource [ ] ./.; - vendorHash = "sha256-krxkfH+4z0rgmFi8OyCzWIrxU5Rpb7gjtGcn3LnZCig="; + vendorHash = "sha256-5Xr6mwPtsqEliKeKv2rhhp6JC7u3coP4nnhIxGMqccU="; env = { CGO_ENABLED = 0; From 1da424bb20a349a7b3e38f78bdbf4208f3ef0bb0 Mon Sep 17 00:00:00 2001 From: Varun Narravula Date: Thu, 11 Dec 2025 17:53:07 -0800 Subject: [PATCH 2/2] feat(nix): sync version number --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 0da1fed..6d2f03f 100644 --- a/flake.nix +++ b/flake.nix @@ -25,7 +25,7 @@ inherit (pkgs) lib; # Update version when releasing - version = "1.6.1"; + version = "1.7.0"; in { default = self.packages.${system}.pangolin-newt;