Skip to content

Commit d0cdcfa

Browse files
chore: release main
1 parent 1fe9cab commit d0cdcfa

12 files changed

Lines changed: 62 additions & 11 deletions

File tree

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-please",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "MCP server and CLI tool for AI-assisted coding with auto-formatting and LSP diagnostics",
55
"repository": "https://github.com/chatbot-pf/code-please",
66
"author": {

.release-please-manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
".": "0.1.5",
3-
"packages/code": "0.1.4",
4-
"packages/dora": "0.1.3",
5-
"packages/format": "0.1.0",
6-
"packages/lsp": "0.1.3"
2+
".": "0.1.6",
3+
"packages/code": "0.1.5",
4+
"packages/dora": "0.1.4",
5+
"packages/format": "0.1.1",
6+
"packages/lsp": "0.1.4"
77
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.1.6](https://github.com/chatbot-pf/code-please/compare/code-please-v0.1.5...code-please-v0.1.6) (2025-12-18)
4+
5+
6+
### Features
7+
8+
* **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))
9+
* **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))
10+
311
## [0.1.5](https://github.com/chatbot-pf/code-please/compare/code-please-v0.1.4...code-please-v0.1.5) (2025-12-18)
412

513

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-please",
33
"type": "module",
4-
"version": "0.1.5",
4+
"version": "0.1.6",
55
"packageManager": "bun@1.3.3",
66
"description": "Auto-format and type-check hooks for AI coding",
77
"workspaces": [

packages/code/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [0.1.5](https://github.com/chatbot-pf/code-please/compare/@pleaseai/code-v0.1.4...@pleaseai/code-v0.1.5) (2025-12-18)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @pleaseai/code-format bumped to 0.1.1
11+
* @pleaseai/code-lsp bumped to 0.1.4
12+
313
## [0.1.4](https://github.com/chatbot-pf/code-please/compare/@pleaseai/code-v0.1.3...@pleaseai/code-v0.1.4) (2025-12-18)
414

515

packages/code/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@pleaseai/code",
33
"type": "module",
4-
"version": "0.1.4",
4+
"version": "0.1.5",
55
"description": "Auto-format and type-check hooks for AI coding",
66
"author": "Minsu Lee",
77
"license": "MIT",

packages/dora/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.1.4](https://github.com/chatbot-pf/code-please/compare/@pleaseai/dora-v0.1.3...@pleaseai/dora-v0.1.4) (2025-12-18)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @pleaseai/code-lsp bumped to 0.1.4
11+
312
## [0.1.3](https://github.com/chatbot-pf/code-please/compare/@pleaseai/dora-v0.1.2...@pleaseai/dora-v0.1.3) (2025-12-18)
413

514

packages/dora/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@pleaseai/dora",
33
"type": "module",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"description": "MCP server for JetBrains IDE integration",
66
"author": "Minsu Lee",
77
"license": "MIT",

packages/format/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
## [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)
4+
5+
6+
### Features
7+
8+
* **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))
9+
* **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))

packages/format/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@pleaseai/code-format",
33
"type": "module",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"description": "Auto-format hooks for AI coding",
66
"author": "Minsu Lee",
77
"license": "MIT",

0 commit comments

Comments
 (0)