Release v0.20.1

This commit is contained in:
nrslib 2026-02-20 13:41:03 +09:00
parent d502e8db8d
commit 3624636dba
4 changed files with 16 additions and 4 deletions

View File

@ -6,6 +6,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
## [0.20.1] - 2026-02-20
### Fixed
- Pin `@opencode-ai/sdk` to `<1.2.7` to fix broken v2 exports that caused `Cannot find module` errors on `npm install -g takt` (#329)
## [0.20.0] - 2026-02-19 ## [0.20.0] - 2026-02-19
### Added ### Added

View File

@ -6,6 +6,12 @@
フォーマットは [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) に基づいています。 フォーマットは [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) に基づいています。
## [0.20.1] - 2026-02-20
### Fixed
- `@opencode-ai/sdk``<1.2.7` にピン留め — v1.2.7 以降のビルド成果物で v2 exports が壊れており、`npm install -g takt` 時に `Cannot find module` エラーが発生する問題を修正 (#329)
## [0.20.0] - 2026-02-19 ## [0.20.0] - 2026-02-19
### Added ### Added

6
package-lock.json generated
View File

@ -1,17 +1,17 @@
{ {
"name": "takt", "name": "takt",
"version": "0.20.0", "version": "0.20.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "takt", "name": "takt",
"version": "0.20.0", "version": "0.20.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.47", "@anthropic-ai/claude-agent-sdk": "^0.2.47",
"@openai/codex-sdk": "^0.103.0", "@openai/codex-sdk": "^0.103.0",
"@opencode-ai/sdk": "^1.1.53", "@opencode-ai/sdk": ">=1.1.53 <1.2.7",
"chalk": "^5.3.0", "chalk": "^5.3.0",
"commander": "^12.1.0", "commander": "^12.1.0",
"update-notifier": "^7.3.1", "update-notifier": "^7.3.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "takt", "name": "takt",
"version": "0.20.0", "version": "0.20.1",
"description": "TAKT: TAKT Agent Koordination Topology - AI Agent Piece Orchestration", "description": "TAKT: TAKT Agent Koordination Topology - AI Agent Piece Orchestration",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",