Skip to content

Commit 318b2f7

Browse files
committed
chore: update version to 1.0.2 in package.json, CLI version display, and JSON report
1 parent 5f1d2b4 commit 318b2f7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adib23704/queryguard",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Zero-config PostgreSQL wire-protocol proxy, N+1 query cascade detector, and automated index advisor",
55
"type": "module",
66
"license": "MIT",

src/cli/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export function parseCliArgs(argv: string[] = process.argv): Command {
1010
.description(
1111
"PostgreSQL wire-protocol proxy, N+1 query cascade detector, and automated index advisor",
1212
)
13-
.version("1.0.1");
13+
.version("1.0.2");
1414

1515
program
1616
.command("exec", { isDefault: true })

src/reporters/json.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export interface JsonReportExport extends AnalysisResult {
77

88
export function renderJsonReport(result: AnalysisResult): string {
99
const exportPayload: JsonReportExport = {
10-
version: "1.0.1",
10+
version: "1.0.2",
1111
generatedAt: new Date().toISOString(),
1212
...result,
1313
};

0 commit comments

Comments
 (0)