File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,20 @@ All notable changes to GoSQLX will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 1.9.3] - 2026-03-08 — License Detection Fix
9+
10+ ### 🐛 Bug Fixes
11+ - Replace LICENSE files with exact official Apache 2.0 text for pkg.go.dev detection (PR #356 )
12+ - Fix cobra command version string consistency (PR #354 )
13+ - Fix remaining 1.9.0 version references in doc comments (PR #355 )
14+
15+ ### 📝 Note
16+ v1.9.2 was cached by the Go module proxy before the LICENSE fix landed,
17+ so pkg.go.dev could not detect the license. This release ensures the
18+ corrected LICENSE is served for ` go get ` users.
19+
20+ ---
21+
822## [ 1.9.2] - 2026-03-08 — Documentation, Community Health & License Fixes
923
1024### 📚 Documentation (PR #351 )
Original file line number Diff line number Diff line change 341341//
342342// Version information:
343343//
344- // Version = "1.9.2 " - Current CLI version
344+ // Version = "1.9.3 " - Current CLI version
345345//
346346// # Dependencies
347347//
Original file line number Diff line number Diff line change @@ -28,14 +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.2 includes:
31+ // Version 1.9.3 includes:
3232// - Fix pkg.go.dev license detection (Apache-2.0 now properly detected)
3333// - Comprehensive doc improvements across the project (PR #351)
3434// - Open-source health files (CONTRIBUTING.md, CODE_OF_CONDUCT.md, SECURITY.md)
3535// - LLM discovery metadata (llms.txt, llms-full.txt) (PR #350)
3636// - SEO improvements for project discoverability
3737// - Fix leading blank line in vscode-extension/LICENSE (PR #352)
38- var Version = "1.9.2 "
38+ var Version = "1.9.3 "
3939
4040var (
4141 // verbose enables detailed output for debugging and troubleshooting.
@@ -123,7 +123,7 @@ Key features:
123123• CI/CD integration with proper exit codes
124124
125125Performance: 1.5M+ operations/second sustained, 1.97M peak. 100-1000x faster than competitors.` ,
126- Version : "1.9.2 " ,
126+ Version : "1.9.3 " ,
127127}
128128
129129// Execute adds all child commands to the root command and sets flags appropriately.
Original file line number Diff line number Diff line change 3535// gosqlx_extract_columns(sql) — extract referenced column names as JSON array
3636// gosqlx_extract_functions(sql) — extract referenced function names as JSON array
3737// gosqlx_extract_metadata(sql) — extract tables, columns, functions with schema qualification
38- // gosqlx_version() — return the library version string (e.g. "1.9.2 ")
38+ // gosqlx_version() — return the library version string (e.g. "1.9.3 ")
3939// gosqlx_free(ptr) — free a string previously returned by any gosqlx_* function
4040package main
4141
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import (
2828)
2929
3030// Version is the current GoSQLX library version.
31- const Version = "1.9.2 "
31+ const Version = "1.9.3 "
3232
3333// Parse tokenizes and parses SQL in one call, returning an Abstract Syntax Tree (AST).
3434//
You can’t perform that action at this time.
0 commit comments