fix: correct tag format and clarify v prefix in README#28
Merged
MantisClone merged 2 commits intomainfrom Mar 13, 2026
Merged
Conversation
Tags use `1.2.0` format (no `v` prefix), not `v1.2.0` as documented. The deployed files on GitHub Pages do use the `v` prefix (e.g., `v1.2.0.json`), but the git tags themselves do not. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Greptile SummaryThis PR fixes a documentation inaccuracy in the
Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Merge changes to main] --> B[Create GitHub Release]
B --> C["Set tag = version from tokens/token-list.json\ne.g. 1.2.0 — no 'v' prefix"]
C --> D[deploy.yml workflow triggered]
D --> E[Read version from tokens/token-list.json]
E --> F["Create versioned files with 'v' prefix\ne.g. v1.2.0.json, v1.2.json, v1.json"]
F --> G["Commit snapshot to versions/\ne.g. versions/v1.2.0.json"]
G --> H[Deploy dist/ to GitHub Pages]
H --> I["Available at:\nhttps://.../v1.2.0.json\nhttps://.../latest.json"]
Last reviewed commit: cc2ab8f |
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
rodrigopavezi
approved these changes
Mar 13, 2026
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.
Summary
v1.2.0but we actually use1.2.0(novprefix)vprefix but deployed files on GitHub Pages do (e.g.,v1.2.0.json) — the deployment workflow adds the prefix automaticallyTest plan
🤖 Generated with Claude Code