From d0faa61fa4ffbf6d0b3d21b85a22c68e7e31b666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Tue, 27 May 2025 14:25:49 +0200 Subject: [PATCH] Update with new stable branch --- nixprstatus/pr.py | 6 +++--- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nixprstatus/pr.py b/nixprstatus/pr.py index bd296f9..703cc06 100644 --- a/nixprstatus/pr.py +++ b/nixprstatus/pr.py @@ -9,9 +9,9 @@ from nixprstatus.output import OutputFormat DEFAULT_HEADERS = { "Accept": "application/vnd.github.text+json", } -DEFAULT_BRANCHES = ["master", "nixos-unstable-small", "nixos-unstable", "nixos-24.11"] -STABLE_BRANCH = "nixos-24.11" -BACKPORT_LABEL = "backport release-24.11" +DEFAULT_BRANCHES = ["master", "nixos-unstable-small", "nixos-unstable", "nixos-25.05"] +STABLE_BRANCH = "nixos-25.05" +BACKPORT_LABEL = "backport release-25.05" class PRStatus(BaseModel): diff --git a/pyproject.toml b/pyproject.toml index 3a3a774..d0e1cee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nixprstatus" -version = "0.1.17" +version = "0.1.18" description = "Nixpkgs PR status checker" readme = "README.md" requires-python = ">=3.12"