chore(release): 0.1.7 - #16
Merged
Merged
Conversation
Bump __version__ to 0.1.7 so the release carries a distinct version. PR #15 (the linear esprima2 string/template scan fix) merged the code but did not bump __init__.__version__, which pyproject derives the dist version from (version = {attr = "pyjsclear.__version__"}) — so builds from the 0.1.7 tag were still labeled 0.1.6 and no installable 0.1.7 could be published. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
yotam-intezer
approved these changes
Aug 27, 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.
Bumps
pyjsclear.__version__to0.1.7.Why
PR #15 merged the linear esprima2 string/template scan fix but did not bump the version.
pyproject.tomlderives the distribution version from the attribute:So the
0.1.7git tag still carried__version__ = '0.1.6', a build from it was labeled 0.1.6 (colliding with the existing release), and no installable0.1.7could be published to the index.After merge
Re-point the
0.1.7tag to this commit, then build + publish so an installable0.1.7lands on the index. static-extraction can then pinpyjsclear==0.1.7and drop its interim esprima monkeypatch.🤖 Generated with Claude Code