From b94696926e04e595e01607301df3721052ccae36 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 04:32:53 +0000 Subject: [PATCH] chore(main): release 1.0.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ plugins/ai-bank/.claude-plugin/plugin.json | 16 +++++++++++++--- server/pyproject.toml | 2 +- server/src/aibank_mcp/__init__.py | 2 +- server/src/aibank_web/__init__.py | 2 +- 6 files changed, 25 insertions(+), 7 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 37fcefa..8d7e5f1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0" + ".": "1.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ec09533..4502156 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Releases are automated with [release-please](https://github.com/googleapis/release-please); entries are generated from [Conventional Commit](https://www.conventionalcommits.org) messages. +## [1.0.1](https://github.com/LaunchPadLab/ai-bank/compare/v1.0.0...v1.0.1) (2026-06-30) + + +### Documentation + +* add Claude Code system prompt customization field guide ([#8](https://github.com/LaunchPadLab/ai-bank/issues/8)) ([0f69e1d](https://github.com/LaunchPadLab/ai-bank/commit/0f69e1d93eb3b882df5e174b8af06a37feaf0fc5)) +* add Claude vs OpenAI model/effort selection guide ([#10](https://github.com/LaunchPadLab/ai-bank/issues/10)) ([e99aa4a](https://github.com/LaunchPadLab/ai-bank/commit/e99aa4affbbf75744b58f75cd6fccf563ad438ef)) + ## [1.0.0] - 2026-05-27 Initial public release of the **ai-bank** catalog and tooling. diff --git a/plugins/ai-bank/.claude-plugin/plugin.json b/plugins/ai-bank/.claude-plugin/plugin.json index 5406c20..269102a 100644 --- a/plugins/ai-bank/.claude-plugin/plugin.json +++ b/plugins/ai-bank/.claude-plugin/plugin.json @@ -2,12 +2,22 @@ "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json", "name": "ai-bank", "displayName": "AI-Bank Catalog", - "version": "1.0.0", + "version": "1.0.1", "description": "Read-only MCP access to the ai-bank catalog of Rails/Hotwire skills, agents, and rules. Search and fetch assets on demand; ask which rules apply to a file before editing.", - "author": { "name": "LaunchPadLab" }, + "author": { + "name": "LaunchPadLab" + }, "homepage": "https://github.com/LaunchPadLab/ai-bank", "repository": "https://github.com/LaunchPadLab/ai-bank", - "keywords": ["rails", "hotwire", "mcp", "skills", "agents", "rules", "catalog"], + "keywords": [ + "rails", + "hotwire", + "mcp", + "skills", + "agents", + "rules", + "catalog" + ], "userConfig": { "cf_access_client_id": { "type": "string", diff --git a/server/pyproject.toml b/server/pyproject.toml index 414f7d1..089cd27 100644 --- a/server/pyproject.toml +++ b/server/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "aibank-mcp" -version = "1.0.0" # x-release-please-version +version = "1.0.1" # x-release-please-version description = "MCP server exposing the ai-bank Skills/Agents/Rules knowledge base (read-only)." readme = "README.md" requires-python = ">=3.10" diff --git a/server/src/aibank_mcp/__init__.py b/server/src/aibank_mcp/__init__.py index d7f3bc5..9d7bd10 100644 --- a/server/src/aibank_mcp/__init__.py +++ b/server/src/aibank_mcp/__init__.py @@ -5,6 +5,6 @@ instead of copying files between projects. """ -__version__ = "1.0.0" # x-release-please-version +__version__ = "1.0.1" # x-release-please-version __all__ = ["__version__"] diff --git a/server/src/aibank_web/__init__.py b/server/src/aibank_web/__init__.py index 8d0c8be..51df934 100644 --- a/server/src/aibank_web/__init__.py +++ b/server/src/aibank_web/__init__.py @@ -8,4 +8,4 @@ from __future__ import annotations -__version__ = "1.0.0" # x-release-please-version +__version__ = "1.0.1" # x-release-please-version