@@ -28,20 +28,14 @@ import (
2828// This version tracks feature releases and compatibility.
2929// Format: MAJOR.MINOR.PATCH (Semantic Versioning 2.0.0)
3030//
31- // Version 1.9.0 includes:
32- // - SQLite PRAGMA fully parsed (bare, arg, and assignment forms)
33- // - WITHOUT ROWID support in CREATE TABLE
34- // - Tautology injection detection (1=1, 'a'='a', OR TRUE) → CRITICAL
35- // - UNION false-positive fix: PatternUnionInjection (CRITICAL) / PatternUnionGeneric (HIGH)
36- // - E1009 ErrCodeUnterminatedBlockComment for /* ... */ errors
37- // - MySQL backtick and SQL Server bracket reserved-word identifiers
38- // - KEY/INDEX/VIEW reserved keywords valid in qualified identifiers
39- // - NATURAL JOIN type stored correctly
40- // - OVER <window_name> (bare name, no parens) per SQL:2003 §7.11
41- // - token_count, Query Size, CTE output, SELECT indentation fixes
42- // - lint exits 1 on any violation (usable as CI gate)
43- // - validate output standardized to ✅/❌
44- var Version = "1.9.0"
31+ // Version 1.9.2 includes:
32+ // - Fix pkg.go.dev license detection (Apache-2.0 now properly detected)
33+ // - Comprehensive doc improvements across the project (PR #351)
34+ // - Open-source health files (CONTRIBUTING.md, CODE_OF_CONDUCT.md, SECURITY.md)
35+ // - LLM discovery metadata (llms.txt, llms-full.txt) (PR #350)
36+ // - SEO improvements for project discoverability
37+ // - Fix leading blank line in vscode-extension/LICENSE (PR #352)
38+ var Version = "1.9.2"
4539
4640var (
4741 // verbose enables detailed output for debugging and troubleshooting.
0 commit comments