Bump latest_version to 3.0.4 (fixes stale download link) - #8
Open
Itachi-0xAI wants to merge 1 commit into
Open
Conversation
_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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What's wrong
_config.ymlhaslatest_version: 1.1.0. That value feeds thedownload button on the homepage (
_layouts/index.html), which buildsits link as:
So the "Download (.tar.xz)" button on pkgconf.org currently points to
a release from 2016, not the current one.
The fix
Bump
latest_versionto3.0.4, matching the latest GitHub releasetag (
pkgconf-3.0.4). I confirmed the tarball actually exists at thatpath before opening this:
Scope note
This closes the "download link is outdated" part of #232. The same
issue also reports an HTTPS certificate mismatch on pkgconf.org (the
cert only covers
*.github.com/*.github.io, not the customdomain) — I checked and that's still happening too, but it's a GitHub
Pages custom-domain/HTTPS configuration issue, not something a
content change in this repo can fix. Leaving that for a repo owner
with access to the Pages settings / DNS.
Refs #232.