Skip to content

Commit 50a8de7

Browse files
committed
chore(release): update CHANGELOG and package versions for v0.0.4
- Remove redundant entries from CHANGELOG for version 0.0.4. - Update package versions to 0.0.4 across desktop, server, web, and contracts. - Revise release notes in documentation to reflect new features and changes.
1 parent ecd9598 commit 50a8de7

8 files changed

Lines changed: 29 additions & 56 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -41,36 +41,6 @@ See [docs/releases/v0.0.4.md](docs/releases/v0.0.4.md) for full notes and [docs/
4141

4242
- Remove CLI publishing from release workflow and update documentation.
4343

44-
## [0.0.4] - 2026-03-27
45-
46-
See [docs/releases/v0.0.4.md](docs/releases/v0.0.4.md) for full notes and [docs/releases/v0.0.4/assets.md](docs/releases/v0.0.4/assets.md) for release asset inventory.
47-
48-
### Added
49-
50-
- Add PR review views and pull request listing.
51-
- Add release preparation workflow script.
52-
- Add Ctrl+` terminal toggle shortcut.
53-
- Add opacity controls for window and sidebar.
54-
- Add draft voice mode implementation plan.
55-
- Add minimized Spotify player with persistent volume controls.
56-
- Add collapse toggle for project file tree.
57-
- Add skills system plan document.
58-
- Add signed DMG build scripts for macOS in package.json.
59-
- Add okcodes package and update package.json with new scripts and dependencies.
60-
- Add actionable home empty state.
61-
62-
### Changed
63-
64-
- Enhance preview bounds handling in DesktopPreviewController and PreviewPanel.
65-
- Default to macOS arm64 artifacts.
66-
- Update release notes with signed DMG build commands for macOS.
67-
- Update package versions and configurations across the monorepo.
68-
- Rename CLI package from `okcode` to `okcodes` and update related documentation.
69-
70-
### Removed
71-
72-
- Remove CLI publishing from release workflow and update documentation.
73-
7444
## [0.0.3] - 2026-03-27
7545

7646
See [docs/releases/v0.0.3.md](docs/releases/v0.0.3.md) for full notes and [docs/releases/v0.0.3/assets.md](docs/releases/v0.0.3/assets.md) for release asset inventory.
@@ -124,8 +94,7 @@ First public version tag. See [docs/releases/v0.0.1.md](docs/releases/v0.0.1.md)
12494
- Published CLI npm package `okcode` aligned with this version (see `apps/server`).
12595
- Desktop installers and update metadata published via GitHub Releases when CI runs for tag `v0.0.1`.
12696

97+
[0.0.4]: https://github.com/OpenKnots/okcode/releases/tag/v0.0.4
12798
[0.0.3]: https://github.com/OpenKnots/okcode/releases/tag/v0.0.3
12899
[0.0.2]: https://github.com/OpenKnots/okcode/releases/tag/v0.0.2
129100
[0.0.1]: https://github.com/OpenKnots/okcode/releases/tag/v0.0.1
130-
[0.0.4]: https://github.com/OpenKnots/okcode/releases/tag/v0.0.4
131-
[0.0.4]: https://github.com/OpenKnots/okcode/releases/tag/v0.0.4

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.0.3",
3+
"version": "0.0.4",
44
"private": true,
55
"main": "dist-electron/main.js",
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.0.3",
3+
"version": "0.0.4",
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.0.3",
3+
"version": "0.0.4",
44
"private": true,
55
"type": "module",
66
"scripts": {

bun.lock

Lines changed: 4 additions & 4 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: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22

33
Human-readable notes and asset inventories for tagged releases.
44

5-
| Version | Notes | Assets |
6-
| [0.0.4](v0.0.4.md) | OK Code v0.0.4 adds built-in PR review, desktop preview and | [manifest](v0.0.4/assets.md) |
7-
| [0.0.4](v0.0.4.md) | OK Code v0.0.4 adds built-in PR review, desktop preview and | [manifest](v0.0.4/assets.md) |
8-
| ------------------ | ---------------------------- | ---------------------------- |
9-
| [0.0.3](v0.0.3.md) | Onboarding, code viewer, PRs | [manifest](v0.0.3/assets.md) |
10-
| [0.0.2](v0.0.2.md) | Patch release | [manifest](v0.0.2/assets.md) |
11-
| [0.0.1](v0.0.1.md) | First public tag | [manifest](v0.0.1/assets.md) |
5+
| Version | Notes | Assets |
6+
| ------------------ | ------------------------------------------- | ---------------------------- |
7+
| [0.0.4](v0.0.4.md) | PR review, desktop preview, release tooling | [manifest](v0.0.4/assets.md) |
8+
| [0.0.3](v0.0.3.md) | Onboarding, code viewer, PRs | [manifest](v0.0.3/assets.md) |
9+
| [0.0.2](v0.0.2.md) | Patch release | [manifest](v0.0.2/assets.md) |
10+
| [0.0.1](v0.0.1.md) | First public tag | [manifest](v0.0.1/assets.md) |
1211

1312
The repository root [CHANGELOG.md](../../CHANGELOG.md) summarizes versions in Keep a Changelog form.
1413

docs/releases/v0.0.4/assets.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,26 @@ The GitHub Release also includes **documentation attachments** (same content as
1010
| `okcode-RELEASE-NOTES.md` | [v0.0.4.md](../v0.0.4.md) |
1111
| `okcode-ASSETS-MANIFEST.md` | This file |
1212

13-
After the workflow completes, this release is expected to publish the **Apple Silicon macOS-only** asset set for version `0.0.4`.
13+
After the workflow completes, expect **installer and updater** artifacts similar to the following (exact names may include the product name `OK Code` and version `0.0.4`).
1414

1515
## Desktop installers and payloads
1616

17-
| Platform | Kind | Expected filename |
18-
| ------------------- | ------------- | ------------------------- |
19-
| macOS Apple Silicon | DMG | `OK-Code-0.0.4-arm64.dmg` |
20-
| macOS Apple Silicon | ZIP (updater) | `OK-Code-0.0.4-arm64.zip` |
17+
| Platform | Kind | Typical pattern |
18+
| ------------------- | -------------- | --------------- |
19+
| macOS Apple Silicon | DMG | `*.dmg` (arm64) |
20+
| macOS Intel | DMG | `*.dmg` (x64) |
21+
| macOS | ZIP (updater) | `*.zip` |
22+
| Linux x64 | AppImage | `*.AppImage` |
23+
| Windows x64 | NSIS installer | `*.exe` |
2124

2225
## Electron updater metadata
2326

24-
| File | Purpose |
25-
| ---------------- | -------------------------------- |
26-
| `latest-mac.yml` | macOS arm64 update manifest |
27-
| `*.blockmap` | Differential download block maps |
27+
| File | Purpose |
28+
| ------------------ | --------------------------------------------------------- |
29+
| `latest-mac.yml` | macOS update manifest (merged from per-arch builds in CI) |
30+
| `latest-linux.yml` | Linux update manifest |
31+
| `latest.yml` | Windows update manifest |
32+
| `*.blockmap` | Differential download block maps |
2833

2934
## Checksums
3035

packages/contracts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@okcode/contracts",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"private": true,
55
"files": [
66
"dist"

0 commit comments

Comments
 (0)