From d8f591729cb6ef5cd3ce2b2e6e556242a5e84758 Mon Sep 17 00:00:00 2001 From: Itachi-0xAI <285282994+Itachi-0xAI@users.noreply.github.com> Date: Tue, 28 Jul 2026 11:36:34 -0400 Subject: [PATCH] Fix stale download link: bump latest_version to 3.0.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit _config.yml still had latest_version: 1.1.0, a release from 2016. The homepage's download button builds its URL straight from this value (see _layouts/index.html), so anyone clicking "Download" on pkgconf.org has been getting a nearly decade-old tarball instead of the current release. Verified https://distfiles.dereferenced.org/pkgconf/pkgconf-3.0.4.tar.xz exists and matches the latest GitHub release tag (pkgconf-3.0.4). Reported in pkgconf/pkgconf#232, which also flags an HTTPS certificate mismatch on pkgconf.org (cert only covers *.github.com). That part isn't fixable from this repo's content — it needs a GitHub Pages custom-domain/HTTPS setting change by a repo owner — so this PR only addresses the stale version number. --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 024ed86..e0ad90b 100644 --- a/_config.yml +++ b/_config.yml @@ -1,6 +1,6 @@ title: pkgconf github_username: pkgconf -latest_version: 1.1.0 +latest_version: 3.0.4 # Build settings markdown: kramdown