Skip to content

Commit bd25547

Browse files
Ajit Pratap SinghAjit Pratap Singh
authored andcommitted
docs: release v1.9.3 — version bumps and changelog for license detection fix
v1.9.2 was cached by the Go module proxy before PR #356 (LICENSE fix) landed, so pkg.go.dev still shows License: UNKNOWN. Bumping to v1.9.3 ensures the proxy fetches a fresh zip with the corrected LICENSE.
1 parent 8dd346a commit bd25547

5 files changed

Lines changed: 20 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to GoSQLX will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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)

cmd/gosqlx/cmd/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@
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
//

cmd/gosqlx/cmd/root.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

4040
var (
4141
// verbose enables detailed output for debugging and troubleshooting.
@@ -123,7 +123,7 @@ Key features:
123123
• CI/CD integration with proper exit codes
124124
125125
Performance: 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.

pkg/cbinding/cbinding.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
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
4040
package main
4141

pkg/gosqlx/gosqlx.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
//

0 commit comments

Comments
 (0)