diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 16eef62..f3e221c 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "code-please", - "version": "0.1.5", + "version": "0.1.6", "description": "MCP server and CLI tool for AI-assisted coding with auto-formatting and LSP diagnostics", "repository": "https://github.com/chatbot-pf/code-please", "author": { diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0fda878..f5ddfe4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { - ".": "0.1.5", - "packages/code": "0.1.4", - "packages/dora": "0.1.3", - "packages/format": "0.1.0", - "packages/lsp": "0.1.3" + ".": "0.1.6", + "packages/code": "0.1.5", + "packages/dora": "0.1.4", + "packages/format": "0.1.1", + "packages/lsp": "0.1.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index bc0cdc2..7585896 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.1.6](https://github.com/chatbot-pf/code-please/compare/code-please-v0.1.5...code-please-v0.1.6) (2025-12-18) + + +### Features + +* **config:** implement unified configuration system ([#26](https://github.com/chatbot-pf/code-please/issues/26)) ([1fe9cab](https://github.com/chatbot-pf/code-please/commit/1fe9cabcc25de195bbe13d947c618480f7eee436)) +* **dora:** add FileProvider with Serena-inspired file tools ([#27](https://github.com/chatbot-pf/code-please/issues/27)) ([7938021](https://github.com/chatbot-pf/code-please/commit/793802161d47fdacfe50e3ea23340d230004773a)) +* **lsp:** add Prisma Language Server support ([#23](https://github.com/chatbot-pf/code-please/issues/23)) ([9a691e1](https://github.com/chatbot-pf/code-please/commit/9a691e1955ca84665ab13f25a1942ee969c766e7)) + ## [0.1.5](https://github.com/chatbot-pf/code-please/compare/code-please-v0.1.4...code-please-v0.1.5) (2025-12-18) diff --git a/package.json b/package.json index 3c90523..e64e0f6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "code-please", "type": "module", - "version": "0.1.5", + "version": "0.1.6", "packageManager": "bun@1.3.3", "description": "Auto-format and type-check hooks for AI coding", "workspaces": [ diff --git a/packages/code/CHANGELOG.md b/packages/code/CHANGELOG.md index 7ed645f..720325c 100644 --- a/packages/code/CHANGELOG.md +++ b/packages/code/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.1.5](https://github.com/chatbot-pf/code-please/compare/@pleaseai/code-v0.1.4...@pleaseai/code-v0.1.5) (2025-12-18) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @pleaseai/code-format bumped to 0.1.1 + * @pleaseai/code-lsp bumped to 0.1.4 + ## [0.1.4](https://github.com/chatbot-pf/code-please/compare/@pleaseai/code-v0.1.3...@pleaseai/code-v0.1.4) (2025-12-18) diff --git a/packages/code/package.json b/packages/code/package.json index b500328..58cd3c2 100644 --- a/packages/code/package.json +++ b/packages/code/package.json @@ -1,7 +1,7 @@ { "name": "@pleaseai/code", "type": "module", - "version": "0.1.4", + "version": "0.1.5", "description": "Auto-format and type-check hooks for AI coding", "author": "Minsu Lee", "license": "MIT", diff --git a/packages/dora/CHANGELOG.md b/packages/dora/CHANGELOG.md index fa0bada..1246345 100644 --- a/packages/dora/CHANGELOG.md +++ b/packages/dora/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.1.4](https://github.com/chatbot-pf/code-please/compare/@pleaseai/dora-v0.1.3...@pleaseai/dora-v0.1.4) (2025-12-18) + + +### Features + +* **dora:** add FileProvider with Serena-inspired file tools ([#27](https://github.com/chatbot-pf/code-please/issues/27)) ([7938021](https://github.com/chatbot-pf/code-please/commit/793802161d47fdacfe50e3ea23340d230004773a)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @pleaseai/code-lsp bumped to 0.1.4 + ## [0.1.3](https://github.com/chatbot-pf/code-please/compare/@pleaseai/dora-v0.1.2...@pleaseai/dora-v0.1.3) (2025-12-18) diff --git a/packages/dora/package.json b/packages/dora/package.json index 49fab42..c873ae1 100644 --- a/packages/dora/package.json +++ b/packages/dora/package.json @@ -1,7 +1,7 @@ { "name": "@pleaseai/dora", "type": "module", - "version": "0.1.3", + "version": "0.1.4", "description": "MCP server for AI-assisted coding with LSP and file tools", "author": "Minsu Lee", "license": "MIT", diff --git a/packages/format/CHANGELOG.md b/packages/format/CHANGELOG.md new file mode 100644 index 0000000..3aac8a4 --- /dev/null +++ b/packages/format/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +## [0.1.1](https://github.com/chatbot-pf/code-please/compare/@pleaseai/code-format-v0.1.0...@pleaseai/code-format-v0.1.1) (2025-12-18) + + +### Features + +* **config:** implement unified configuration system ([#26](https://github.com/chatbot-pf/code-please/issues/26)) ([1fe9cab](https://github.com/chatbot-pf/code-please/commit/1fe9cabcc25de195bbe13d947c618480f7eee436)) +* **lsp:** add Prisma Language Server support ([#23](https://github.com/chatbot-pf/code-please/issues/23)) ([9a691e1](https://github.com/chatbot-pf/code-please/commit/9a691e1955ca84665ab13f25a1942ee969c766e7)) diff --git a/packages/format/package.json b/packages/format/package.json index 908e3c8..0d80191 100644 --- a/packages/format/package.json +++ b/packages/format/package.json @@ -1,7 +1,7 @@ { "name": "@pleaseai/code-format", "type": "module", - "version": "0.1.0", + "version": "0.1.1", "description": "Auto-format hooks for AI coding", "author": "Minsu Lee", "license": "MIT", diff --git a/packages/lsp/CHANGELOG.md b/packages/lsp/CHANGELOG.md index a3575f6..3821402 100644 --- a/packages/lsp/CHANGELOG.md +++ b/packages/lsp/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.1.4](https://github.com/chatbot-pf/code-please/compare/@pleaseai/code-lsp-v0.1.3...@pleaseai/code-lsp-v0.1.4) (2025-12-18) + + +### Features + +* **config:** implement unified configuration system ([#26](https://github.com/chatbot-pf/code-please/issues/26)) ([1fe9cab](https://github.com/chatbot-pf/code-please/commit/1fe9cabcc25de195bbe13d947c618480f7eee436)) +* **lsp:** add Prisma Language Server support ([#23](https://github.com/chatbot-pf/code-please/issues/23)) ([9a691e1](https://github.com/chatbot-pf/code-please/commit/9a691e1955ca84665ab13f25a1942ee969c766e7)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @pleaseai/code-format bumped to 0.1.1 + ## [0.1.3](https://github.com/chatbot-pf/code-please/compare/@pleaseai/code-lsp-v0.1.2...@pleaseai/code-lsp-v0.1.3) (2025-12-18) diff --git a/packages/lsp/package.json b/packages/lsp/package.json index fa9aedd..2bd0e84 100644 --- a/packages/lsp/package.json +++ b/packages/lsp/package.json @@ -1,7 +1,7 @@ { "name": "@pleaseai/code-lsp", "type": "module", - "version": "0.1.3", + "version": "0.1.4", "description": "LSP client for AI coding tools", "author": "Minsu Lee", "license": "MIT",