Description
The manifest.json file in the current release (or the latest repository state) still shows version 1.0.4, even though the latest GitHub Release is tagged as 1.0.5.
Details
When checking the version via the GitHub API and comparing it with the local manifest.json file, there is a mismatch:
This mismatch causes issues for users who rely on scripts or update managers to track plugin versions.
Steps to reproduce
You can verify this by running the following commands:
# Check the latest release tag
curl -sL https://api.github.com/repos/windingblack/obsidian-global-proxy/releases/latest | jq -r '.tag_name'
# Result: 1.0.5
# Check the version inside manifest.json
cat ./manifest.json | jq -r '.version'
# Result: 1.0.4
Description
The
manifest.jsonfile in the current release (or the latest repository state) still shows version1.0.4, even though the latest GitHub Release is tagged as1.0.5.Details
When checking the version via the GitHub API and comparing it with the local
manifest.jsonfile, there is a mismatch:GitHub Release Tag:
1.0.5manifest.json "version" field:
1.0.4This mismatch causes issues for users who rely on scripts or update managers to track plugin versions.
Steps to reproduce
You can verify this by running the following commands: