From 6fdc2306372d22f20367044c3e8966e79e1fee3c Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Fri, 7 Aug 2026 09:33:29 +0200 Subject: [PATCH] nix: remove outdated code / comment in release script --- nix/tools/release.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/nix/tools/release.nix b/nix/tools/release.nix index 34fef40ab..d72266694 100644 --- a/nix/tools/release.nix +++ b/nix/tools/release.nix @@ -7,7 +7,6 @@ let { name = "postgrest-release"; docs = "Patch postgrest.cabal, CHANGELOG.md, commit and push all in one go."; - args = [ "ARG_OPTIONAL_BOOLEAN([major], [m], [Bump to new major version (only applies on main branch).])" ]; workingDir = "/"; } '' @@ -20,7 +19,6 @@ let git diff --exit-code HEAD postgrest.cabal > /dev/null trap "" ERR - # TODO: Support C+D bumps when implementing hackage releases bump () { current_version="$(grep -oP '^version:\s*\K.*' postgrest.cabal)" # shellcheck disable=SC2034