Commit c9e7eae4 authored by Tyce Herrman's avatar Tyce Herrman
Browse files

fix: allow two digits in patch release version regex

parent 7d79a30e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ rustPlatform.buildRustPackage rec {
    updateScript = nix-update-script {
      extraArgs = [
        # Ignore subcrate releases (fox, aqua-registry)
        "--version-regex=^v([0-9]+\\.[0-9]+\\.[0-9])$"
        "--version-regex=^v([0-9]+\\.[0-9]+\\.[0-9]+)$"
      ];
    };
    tests = {