summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2026-01-11 12:58:14 -0600
committerAiden Cline <[email protected]>2026-01-11 12:58:14 -0600
commit20c18689c0c32de648489a50829a300858822b5c (patch)
tree8795c5b8b07ee04abe1be480b4b5f9656a02049d
parenta803cf8aee73bac2209e00ea3c3a9aac655e7fb8 (diff)
downloadopencode-20c18689c0c32de648489a50829a300858822b5c.tar.gz
opencode-20c18689c0c32de648489a50829a300858822b5c.zip
bump copilot plugin version
-rw-r--r--packages/opencode/src/global/index.ts2
-rw-r--r--packages/opencode/src/plugin/index.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/opencode/src/global/index.ts b/packages/opencode/src/global/index.ts
index 2bd35971c..253b9663d 100644
--- a/packages/opencode/src/global/index.ts
+++ b/packages/opencode/src/global/index.ts
@@ -33,7 +33,7 @@ await Promise.all([
fs.mkdir(Global.Path.bin, { recursive: true }),
])
-const CACHE_VERSION = "16"
+const CACHE_VERSION = "17"
const version = await Bun.file(path.join(Global.Path.cache, "version"))
.text()
diff --git a/packages/opencode/src/plugin/index.ts b/packages/opencode/src/plugin/index.ts
index f5670f73a..f57b46a35 100644
--- a/packages/opencode/src/plugin/index.ts
+++ b/packages/opencode/src/plugin/index.ts
@@ -12,7 +12,7 @@ import { CodexAuthPlugin } from "./codex"
export namespace Plugin {
const log = Log.create({ service: "plugin" })
- const BUILTIN = ["[email protected]", "[email protected]"]
+ const BUILTIN = ["[email protected]", "[email protected]"]
// Built-in plugins that are directly imported (not installed from npm)
const INTERNAL_PLUGINS: PluginInstance[] = [CodexAuthPlugin]