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 <noreply@anthropic.com>
This commit is contained in:
Pedro Rodrigues
2026-01-21 15:40:53 +00:00
committed by GitHub
parent 0666f21a0c
commit 8df22b058d
6 changed files with 7 additions and 7 deletions

View File

@@ -1,12 +1,12 @@
{ {
"name": "postgresql-best-practices-build", "name": "postgresql-best-practices-build",
"version": "0.1.0", "version": "1.0.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "postgresql-best-practices-build", "name": "postgresql-best-practices-build",
"version": "0.1.0", "version": "1.0.0",
"devDependencies": { "devDependencies": {
"@types/node": "^20.10.0", "@types/node": "^20.10.0",
"tsx": "^4.7.0", "tsx": "^4.7.0",

View File

@@ -1,6 +1,6 @@
{ {
"name": "postgres-best-practices-build", "name": "postgres-best-practices-build",
"version": "0.1.0", "version": "1.0.0",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {

View File

@@ -57,7 +57,7 @@ function getDefaultSections(): Section[] {
function loadMetadata(): Metadata { function loadMetadata(): Metadata {
if (!existsSync(METADATA_FILE)) { if (!existsSync(METADATA_FILE)) {
return { return {
version: "0.1.0", version: "1.0.0",
organization: "Supabase", organization: "Supabase",
date: new Date().toLocaleDateString("en-US", { month: "long", year: "numeric" }), date: new Date().toLocaleDateString("en-US", { month: "long", year: "numeric" }),
abstract: "Postgres performance optimization guide for developers.", abstract: "Postgres performance optimization guide for developers.",

View File

@@ -1,6 +1,6 @@
# Postgres Best Practices # Postgres Best Practices
**Version 0.1.0** **Version 1.0.0**
Supabase Supabase
January 2026 January 2026

View File

@@ -4,7 +4,7 @@ description: Postgres performance optimization and best practices from Supabase.
license: MIT license: MIT
metadata: metadata:
author: supabase author: supabase
version: "0.1.0" version: "1.0.0"
--- ---
# Supabase Postgres Best Practices # Supabase Postgres Best Practices

View File

@@ -1,5 +1,5 @@
{ {
"version": "0.1.0", "version": "1.0.0",
"organization": "Supabase", "organization": "Supabase",
"date": "January 2026", "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.", "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.",