Skip to content

Commit adfdd7e

Browse files
committed
chore(release): prepare v0.20.0
1 parent b9ae2c8 commit adfdd7e

12 files changed

Lines changed: 112 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.20.0] - 2026-04-09
11+
12+
See [docs/releases/v0.20.0.md](docs/releases/v0.20.0.md) for full notes and [docs/releases/v0.20.0/assets.md](docs/releases/v0.20.0/assets.md) for release asset inventory.
13+
14+
### Added
15+
16+
- Turn the sidebar footer brand block into a clickable home/status affordance.
17+
- Add OpenClaw gateway auth timeout diagnostics.
18+
19+
### Changed
20+
21+
- Use default tree for new chats and show stash badges.
22+
- Reuse stable empty message array in SME chat.
23+
- Refresh sidebar branding and align package versions.
24+
- Refresh sidebar app footer branding.
25+
1026
## [0.19.0] - 2026-04-08
1127

1228
See [docs/releases/v0.19.0.md](docs/releases/v0.19.0.md) for full notes and [docs/releases/v0.19.0/assets.md](docs/releases/v0.19.0/assets.md) for release asset inventory.
@@ -595,3 +611,4 @@ First public version tag. See [docs/releases/v0.0.1.md](docs/releases/v0.0.1.md)
595611
[0.16.1]: https://github.com/OpenKnots/okcode/releases/tag/v0.16.1
596612
[0.17.0]: https://github.com/OpenKnots/okcode/releases/tag/v0.17.0
597613
[0.18.0]: https://github.com/OpenKnots/okcode/releases/tag/v0.18.0
614+
[0.20.0]: https://github.com/OpenKnots/okcode/releases/tag/v0.20.0

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@okcode/desktop",
3-
"version": "0.19.0",
3+
"version": "0.20.0",
44
"private": true,
55
"main": "dist-electron/main.js",
66
"scripts": {

apps/mobile/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88
minSdkVersion rootProject.ext.minSdkVersion
99
targetSdkVersion rootProject.ext.targetSdkVersion
1010
versionCode 1
11-
versionName "0.19.0"
11+
versionName "0.20.0"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
aaptOptions {
1414
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

apps/mobile/ios/App/App.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@
303303
"$(inherited)",
304304
"@executable_path/Frameworks",
305305
);
306-
MARKETING_VERSION = 0.19.0;
306+
MARKETING_VERSION = 0.20.0;
307307
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
308308
PRODUCT_BUNDLE_IDENTIFIER = com.openknots.okcode.mobile;
309309
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -325,7 +325,7 @@
325325
"$(inherited)",
326326
"@executable_path/Frameworks",
327327
);
328-
MARKETING_VERSION = 0.19.0;
328+
MARKETING_VERSION = 0.20.0;
329329
PRODUCT_BUNDLE_IDENTIFIER = com.openknots.okcode.mobile;
330330
PRODUCT_NAME = "$(TARGET_NAME)";
331331
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";

apps/mobile/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@okcode/mobile",
3-
"version": "0.19.0",
3+
"version": "0.20.0",
44
"private": true,
55
"type": "module",
66
"scripts": {

apps/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "okcodes",
3-
"version": "0.19.0",
3+
"version": "0.20.0",
44
"license": "MIT",
55
"repository": {
66
"type": "git",

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@okcode/web",
3-
"version": "0.19.0",
3+
"version": "0.20.0",
44
"private": true,
55
"type": "module",
66
"scripts": {

bun.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/releases/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Use this directory for versioned release notes and asset manifests only:
99

1010
| Version | Summary | Assets |
1111
| -------------------- | -------------------------------------------------------------------------------------------- | ----------------------------- |
12+
| [0.20.0](v0.20.0.md) | Polish the sidebar app shell, stabilize SME chat and OpenCla | [manifest](v0.20.0/assets.md) |
1213
| [0.19.0](v0.19.0.md) | Release workflow hardening, branch-handling fixes, and release-preflight cleanup | [manifest](v0.19.0/assets.md) |
1314
| [0.18.0](v0.18.0.md) | Workspace panel, preview pop-out controls, worktree cleanup actions, and release-flow polish | [manifest](v0.18.0/assets.md) |
1415
| [0.17.0](v0.17.0.md) | Unified right-panel review, worktree cleanup controls, chat UX polish, and release hardening | [manifest](v0.17.0/assets.md) |

docs/releases/v0.20.0.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# OK Code v0.20.0
2+
3+
**Date:** 2026-04-09
4+
**Tag:** [`v0.20.0`](https://github.com/OpenKnots/okcode/releases/tag/v0.20.0)
5+
6+
## Summary
7+
8+
Polish the sidebar app shell, stabilize SME chat and OpenClaw gateway flows, and keep release metadata aligned.
9+
10+
## Highlights
11+
12+
- **Turn the sidebar footer brand block into a clickable home/status affordance.**
13+
- **Add OpenClaw gateway auth timeout diagnostics.**
14+
- **Use default tree for new chats and show stash badges.**
15+
- **Reuse stable empty message array in SME chat.**
16+
- **Refresh sidebar branding and align package versions.**
17+
- **Refresh sidebar app footer branding.**
18+
19+
## Breaking changes
20+
21+
- None.
22+
23+
## Upgrade and install
24+
25+
- **CLI:** `npm install -g okcodes@0.20.0` (after the package is published to npm manually).
26+
- **Desktop:** Download from [GitHub Releases](https://github.com/OpenKnots/okcode/releases/tag/v0.20.0). Filenames are listed in [assets.md](v0.20.0/assets.md).
27+
- **iOS:** Available via TestFlight (uploaded automatically by the Release iOS workflow).
28+
29+
## Known limitations
30+
31+
OK Code remains early work in progress. Expect rough edges around session recovery, streaming edge cases, and platform-specific desktop behavior. Report issues on GitHub.

0 commit comments

Comments
 (0)