Skip to content

Commit fc22d5d

Browse files
chore(release): 1.0.0 [skip ci]
# 1.0.0 (2026-03-17) ### Bug Fixes * **ci:** pin actions to full commit SHAs and enable npm publish ([327dabb](327dabb)) * **ci:** remove unsupported --frozen-lockfile flag and disable npm publish ([10d635a](10d635a)) * **core:** harden fallback parsing and guards ([5d32902](5d32902)) ### Features * **display:** notify fallback-active on each turn and resolve agent file eagerly ([a7386b8](a7386b8)) * initial release — ordered model fallback chains with health state machine ([7e63db1](7e63db1))
1 parent 327dabb commit fc22d5d

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# 1.0.0 (2026-03-17)
2+
3+
4+
### Bug Fixes
5+
6+
* **ci:** pin actions to full commit SHAs and enable npm publish ([327dabb](https://github.com/Smart-Coders-HQ/opencode-model-fallback/commit/327dabb7a2d98f6379e05d665c68bbbb86301da8))
7+
* **ci:** remove unsupported --frozen-lockfile flag and disable npm publish ([10d635a](https://github.com/Smart-Coders-HQ/opencode-model-fallback/commit/10d635a1739dbc43b6b37d32bdd30f3e7df9eb12))
8+
* **core:** harden fallback parsing and guards ([5d32902](https://github.com/Smart-Coders-HQ/opencode-model-fallback/commit/5d329025065b6302d3b0cb6c137dc93fb7fb7049))
9+
10+
11+
### Features
12+
13+
* **display:** notify fallback-active on each turn and resolve agent file eagerly ([a7386b8](https://github.com/Smart-Coders-HQ/opencode-model-fallback/commit/a7386b8b12f9e1df9d13e524018e268c6694ac01))
14+
* initial release — ordered model fallback chains with health state machine ([7e63db1](https://github.com/Smart-Coders-HQ/opencode-model-fallback/commit/7e63db1c5afbd7caff0b48dbd0f3d58244dab3de))
15+
116
# Changelog
217

318
All notable changes to this project will be documented in this file.

package.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opencode-model-fallback",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "Ordered model fallback chains with health tracking for OpenCode",
55
"type": "module",
66
"main": "dist/index.js",
@@ -22,7 +22,11 @@
2222
"format:check": "biome format --check .",
2323
"release": "semantic-release"
2424
},
25-
"files": ["dist", "plugin.json", "examples"],
25+
"files": [
26+
"dist",
27+
"plugin.json",
28+
"examples"
29+
],
2630
"peerDependencies": {
2731
"@opencode-ai/plugin": ">=1.2.0",
2832
"zod": ">=4.0.0"
@@ -43,7 +47,13 @@
4347
"typescript": "^5.9.3",
4448
"zod": "^4.3.6"
4549
},
46-
"keywords": ["opencode", "plugin", "model-fallback", "rate-limit", "failover"],
50+
"keywords": [
51+
"opencode",
52+
"plugin",
53+
"model-fallback",
54+
"rate-limit",
55+
"failover"
56+
],
4757
"license": "Apache-2.0",
4858
"repository": {
4959
"type": "git",

0 commit comments

Comments
 (0)