From 5bbe515fc364a31a53c0f9cf884b91f088919801 Mon Sep 17 00:00:00 2001 From: Friedrich Haussmann Date: Sun, 25 Jan 2026 12:02:22 +0100 Subject: [PATCH 1/4] git-xet: adds v0.2.0 --- bucket/git-xet.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 bucket/git-xet.json diff --git a/bucket/git-xet.json b/bucket/git-xet.json new file mode 100644 index 0000000000000..0d8dd66876d73 --- /dev/null +++ b/bucket/git-xet.json @@ -0,0 +1,33 @@ +{ + "version": "0.2.0", + "description": "Git LFS custom transfer agent that implements upload and download of files using the Xet protocol.", + "homepage": "https://huggingface.co/docs/hub/xet/", + "license": "Apache-2.0", + "suggest": { + "Git": [ + "git", + "git-with-openssh" + ], + "Git LFS": "git-lfs", + "vcredist": "extras/vcredist2022" + }, + "architecture": { + "64bit": { + "url": "https://github.com/huggingface/xet-core/releases/download/git-xet-v0.2.0/git-xet-windows-x86_64.zip", + "hash": "070d91735c29dfadb3aa560687d5f803f3ff111a7d7df736a12d15aca058b111" + } + }, + "bin": "git-xet.exe", + "checkver": { + "url": "https://api.github.com/repos/huggingface/xet-core/git/matching-refs/tags/git-xet-v", + "regex": "git-xet-v([0-9.]+)", + "reverse": true + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/huggingface/xet-core/releases/download/git-xet-v$version/git-xet-windows-x86_64.zip" + } + } + } +} From be348a33c783678e6c9d14c31493b471c9f623fb Mon Sep 17 00:00:00 2001 From: Friedrich Haussmann Date: Wed, 25 Feb 2026 20:07:16 +0100 Subject: [PATCH 2/4] updates checkver, version 0.2.1 --- bucket/git-xet.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bucket/git-xet.json b/bucket/git-xet.json index 0d8dd66876d73..fc19e9cc939e6 100644 --- a/bucket/git-xet.json +++ b/bucket/git-xet.json @@ -1,8 +1,9 @@ { - "version": "0.2.0", + "version": "0.2.1", "description": "Git LFS custom transfer agent that implements upload and download of files using the Xet protocol.", "homepage": "https://huggingface.co/docs/hub/xet/", "license": "Apache-2.0", + "notes": "Follow instructions in `git xet install --help` after installation.", "suggest": { "Git": [ "git", @@ -13,15 +14,14 @@ }, "architecture": { "64bit": { - "url": "https://github.com/huggingface/xet-core/releases/download/git-xet-v0.2.0/git-xet-windows-x86_64.zip", - "hash": "070d91735c29dfadb3aa560687d5f803f3ff111a7d7df736a12d15aca058b111" + "url": "https://github.com/huggingface/xet-core/releases/download/git-xet-v0.2.1/git-xet-windows-x86_64.zip", + "hash": "427179c2f410bb0a1da28df590adcfbdc8fff50369f295da148fb1c9c27d2cea" } }, "bin": "git-xet.exe", "checkver": { - "url": "https://api.github.com/repos/huggingface/xet-core/git/matching-refs/tags/git-xet-v", - "regex": "git-xet-v([0-9.]+)", - "reverse": true + "url": "https://github.com/huggingface/xet-core/raw/refs/heads/main/git_xet/windows_installer/Package.wxs", + "regex": "Version=\"([\\w.]+)\"" }, "autoupdate": { "architecture": { From 75ab3a99e41f8e8749ba77ed6c7eb688c5cd9c56 Mon Sep 17 00:00:00 2001 From: Friedrich Haussmann Date: Wed, 25 Feb 2026 20:24:23 +0100 Subject: [PATCH 3/4] homepage url fix --- bucket/git-xet.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bucket/git-xet.json b/bucket/git-xet.json index fc19e9cc939e6..a0cd0a10192ce 100644 --- a/bucket/git-xet.json +++ b/bucket/git-xet.json @@ -1,7 +1,7 @@ { "version": "0.2.1", "description": "Git LFS custom transfer agent that implements upload and download of files using the Xet protocol.", - "homepage": "https://huggingface.co/docs/hub/xet/", + "homepage": "https://huggingface.co/docs/hub/xet/index", "license": "Apache-2.0", "notes": "Follow instructions in `git xet install --help` after installation.", "suggest": { From 55a5d4aba042a309c2786bf609e3f5d71c6e4970 Mon Sep 17 00:00:00 2001 From: Friedrich Haussmann Date: Thu, 26 Feb 2026 05:11:46 +0100 Subject: [PATCH 4/4] changes checkver to github releases api Co-authored-by: z-Fng <54583083+z-Fng@users.noreply.github.com> --- bucket/git-xet.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bucket/git-xet.json b/bucket/git-xet.json index a0cd0a10192ce..3f1c5763b7f04 100644 --- a/bucket/git-xet.json +++ b/bucket/git-xet.json @@ -20,8 +20,9 @@ }, "bin": "git-xet.exe", "checkver": { - "url": "https://github.com/huggingface/xet-core/raw/refs/heads/main/git_xet/windows_installer/Package.wxs", - "regex": "Version=\"([\\w.]+)\"" + "url": "https://api.github.com/repos/huggingface/xet-core/releases?per_page=100", + "jsonpath": "$..tag_name", + "regex": "git-xet-v([\\d.]+)" }, "autoupdate": { "architecture": {