From 2f6eea5a12c3d5034d1781df5593ca4e96635e5c Mon Sep 17 00:00:00 2001 From: Itamar Gafni Date: Thu, 27 Aug 2026 11:44:12 +0300 Subject: [PATCH] chore(release): 0.1.7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- pyjsclear/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyjsclear/__init__.py b/pyjsclear/__init__.py index ee5c57b..a8cfecb 100644 --- a/pyjsclear/__init__.py +++ b/pyjsclear/__init__.py @@ -12,7 +12,7 @@ __all__ = ['Deobfuscator', 'deobfuscate', 'deobfuscate_file'] -__version__ = '0.1.6' +__version__ = '0.1.7' def deobfuscate(code: str, max_iterations: int = 50) -> str: