From 35382c929b543994e8394a13dff7773b5baf1e97 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 07:55:07 +0000 Subject: [PATCH] chore(main): release 0.1.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ deno.json | 27 ++++++++++++++++++++++----- 3 files changed, 38 insertions(+), 6 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e18ee07..466df71 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.0" + ".": "0.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..4b12ff6 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +## 0.1.0 (2026-07-24) + + +### Features + +* embed full rhwp-studio editor via Deno workspace ([#9](https://github.com/pleaseai/openhwp/issues/9)) ([b73f1bd](https://github.com/pleaseai/openhwp/commit/b73f1bd1c462046e539bec454208cd69504630df)) +* scaffold Deno desktop app (viewer) ([b0b7e5e](https://github.com/pleaseai/openhwp/commit/b0b7e5e60d03a714ba81dd51950997d61064130a)) +* **ui:** vendor the rhwp engine locally (offline, strict CSP) ([001d834](https://github.com/pleaseai/openhwp/commit/001d834b7afac7ee80644b611e7f463f2f58b64a)) + + +### Documentation + +* note pre-1.0 versioning policy in CONTRIBUTING ([#7](https://github.com/pleaseai/openhwp/issues/7)) ([21ed463](https://github.com/pleaseai/openhwp/commit/21ed4637db06c820b6ebd0ed6823965d497ec3dc)) diff --git a/deno.json b/deno.json index eae0a8c..fcf3b9e 100644 --- a/deno.json +++ b/deno.json @@ -1,5 +1,7 @@ { - "workspace": ["./apps/desktop"], + "workspace": [ + "./apps/desktop" + ], "tasks": { "setup": "deno run --allow-read --allow-run scripts/setup-rhwp.ts", "build:studio": "deno run --allow-read --allow-write --allow-run --allow-env scripts/build-studio.ts", @@ -9,11 +11,26 @@ }, "fmt": { "lineWidth": 100, - "include": ["apps/", "scripts/", "config/", ".claude/skills/run-openhwp/driver.ts"], - "exclude": ["apps/studio-host/dist/", "apps/studio-host/vendor/"] + "include": [ + "apps/", + "scripts/", + "config/", + ".claude/skills/run-openhwp/driver.ts" + ], + "exclude": [ + "apps/studio-host/dist/", + "apps/studio-host/vendor/" + ] }, "lint": { - "include": ["apps/", "scripts/", ".claude/skills/run-openhwp/driver.ts"], - "exclude": ["apps/studio-host/dist/", "apps/studio-host/vendor/"] + "include": [ + "apps/", + "scripts/", + ".claude/skills/run-openhwp/driver.ts" + ], + "exclude": [ + "apps/studio-host/dist/", + "apps/studio-host/vendor/" + ] } }