From 8df22b058dd6d3cb4b8ad8c46bd2050092c9850b Mon Sep 17 00:00:00 2001 From: Pedro Rodrigues <44656907+Rodriguespn@users.noreply.github.com> Date: Wed, 21 Jan 2026 15:40:53 +0000 Subject: [PATCH] chore: bump version to 1.0.0 (#4) Update version from 0.1.0 to 1.0.0 across all files: - skills/postgres-best-practices/AGENTS.md - skills/postgres-best-practices/SKILL.md - skills/postgres-best-practices/metadata.json - packages/postgres-best-practices-build/package.json - packages/postgres-best-practices-build/package-lock.json - packages/postgres-best-practices-build/src/build.ts Co-authored-by: Claude Opus 4.5 --- packages/postgres-best-practices-build/package-lock.json | 4 ++-- packages/postgres-best-practices-build/package.json | 2 +- packages/postgres-best-practices-build/src/build.ts | 2 +- skills/postgres-best-practices/AGENTS.md | 2 +- skills/postgres-best-practices/SKILL.md | 2 +- skills/postgres-best-practices/metadata.json | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/postgres-best-practices-build/package-lock.json b/packages/postgres-best-practices-build/package-lock.json index 058abe9..f663c64 100644 --- a/packages/postgres-best-practices-build/package-lock.json +++ b/packages/postgres-best-practices-build/package-lock.json @@ -1,12 +1,12 @@ { "name": "postgresql-best-practices-build", - "version": "0.1.0", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "postgresql-best-practices-build", - "version": "0.1.0", + "version": "1.0.0", "devDependencies": { "@types/node": "^20.10.0", "tsx": "^4.7.0", diff --git a/packages/postgres-best-practices-build/package.json b/packages/postgres-best-practices-build/package.json index 9e0527d..bf4e1dd 100644 --- a/packages/postgres-best-practices-build/package.json +++ b/packages/postgres-best-practices-build/package.json @@ -1,6 +1,6 @@ { "name": "postgres-best-practices-build", - "version": "0.1.0", + "version": "1.0.0", "private": true, "type": "module", "scripts": { diff --git a/packages/postgres-best-practices-build/src/build.ts b/packages/postgres-best-practices-build/src/build.ts index 72b3e4b..d1a13fe 100644 --- a/packages/postgres-best-practices-build/src/build.ts +++ b/packages/postgres-best-practices-build/src/build.ts @@ -57,7 +57,7 @@ function getDefaultSections(): Section[] { function loadMetadata(): Metadata { if (!existsSync(METADATA_FILE)) { return { - version: "0.1.0", + version: "1.0.0", organization: "Supabase", date: new Date().toLocaleDateString("en-US", { month: "long", year: "numeric" }), abstract: "Postgres performance optimization guide for developers.", diff --git a/skills/postgres-best-practices/AGENTS.md b/skills/postgres-best-practices/AGENTS.md index 26a287c..fe9cf48 100644 --- a/skills/postgres-best-practices/AGENTS.md +++ b/skills/postgres-best-practices/AGENTS.md @@ -1,6 +1,6 @@ # Postgres Best Practices -**Version 0.1.0** +**Version 1.0.0** Supabase January 2026 diff --git a/skills/postgres-best-practices/SKILL.md b/skills/postgres-best-practices/SKILL.md index 1f91a7c..6434580 100644 --- a/skills/postgres-best-practices/SKILL.md +++ b/skills/postgres-best-practices/SKILL.md @@ -4,7 +4,7 @@ description: Postgres performance optimization and best practices from Supabase. license: MIT metadata: author: supabase - version: "0.1.0" + version: "1.0.0" --- # Supabase Postgres Best Practices diff --git a/skills/postgres-best-practices/metadata.json b/skills/postgres-best-practices/metadata.json index 241b6a3..fc3633a 100644 --- a/skills/postgres-best-practices/metadata.json +++ b/skills/postgres-best-practices/metadata.json @@ -1,5 +1,5 @@ { - "version": "0.1.0", + "version": "1.0.0", "organization": "Supabase", "date": "January 2026", "abstract": "Comprehensive PostgreSQL performance optimization guide for developers using Supabase and PostgreSQL. Contains performance rules across 8 categories, prioritized by impact from critical (query performance, connection management) to incremental (advanced features). Each rule includes detailed explanations, incorrect vs. correct SQL examples, query plan analysis, and specific performance metrics to guide automated optimization and code generation.",