Skip to content

Commit a954068

Browse files
committed
chore(release): bump version to 0.6.0 and finalize release notes
1 parent 87259f5 commit a954068

File tree

3 files changed

+57
-1
lines changed

3 files changed

+57
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ The format is based on Keep a Changelog, and this project follows Semantic Versi
66

77
## [Unreleased]
88

9+
## [0.6.0] - 2026-03-29
10+
11+
- Added first HTML documentation exporter via `orgscript export html <file>`.
12+
- Refined Mermaid export with improved styling, parallelogram shapes for triggers, and semantic markers for state diagrams.
13+
- Upgraded Markdown summary export (v2) with Table of Contents (TOC), inter-block separators, and better header hierarchy.
14+
- Reorganized and expanded the demo suite under `docs/demos/` to include HTML, Markdown, and Mermaid artifacts for all hero examples.
15+
- Stabilized the canonical JSON model (v0.2) and updated its specification in `spec/canonical-model.md`.
16+
- Improved business-level phrasing in all summary exporters for better stakeholder readability.
17+
- Consolidated "Artiflow Flow" in documentation to show the path from `.orgs` to visual/structured outputs.
18+
919
## [0.5.0] - 2026-03-29
1020

1121
- Refined VS Code TextMate grammar to support inline keywords and dotted properties correctly.

docs/releases/v0.6.0.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# OrgScript v0.6.0
2+
3+
OrgScript v0.6.0 is the first **integrations, artifacts, and showcase** release.
4+
5+
This release marks a major step forward in making OrgScript’s value proposition visible. Instead of just modeling and checking logic, you can now generate compelling visual and structured outputs for stakeholders, documentation, and external systems.
6+
7+
## Highlights
8+
9+
### HTML Documentation Export
10+
- Introduced `orgscript export html <file>`.
11+
- Generates a modern, static HTML documentation page.
12+
- Features embedded logic summaries and live-rendered Mermaid diagrams via CDN-based `mermaid.js`.
13+
14+
### Mermaid Export Polish
15+
- **Semantic Shapes**: Triggers are now represented as parallelograms for better flowchart clarity.
16+
- **Improved Styling**: Added a consistent and premium styling layer (color-coded nodes for decision, action, trigger, success, and stop).
17+
- **Stateflow Markers**: State diagrams now include proper `[*] -->` (start) and `--> [*]` (end) markers based on transition flow.
18+
- **Readability**: Switched to single quotes for internal strings to improve the raw output's legibility.
19+
20+
### Markdown Summary v2
21+
- **TOC and Anchors**: Multi-block files now include a Table of Contents with jump-links.
22+
- **Structured Sections**: Blocks are now separated by horizontal rules and use a clearer header hierarchy (H2/H3).
23+
- **Business Language**: Phrasing has been tuned to be less technical and more accessible for non-technical reviewers.
24+
25+
### Showcase Upgrade
26+
- Updated `docs/demos/` to include HTML, Markdown, and Mermaid artifacts.
27+
- Included the "Hero" example (`craft-business-lead-to-order.orgs`) in the demo build.
28+
- Refined the "Strategic Artifact Flow" described in the root `README.md`.
29+
30+
## Integration and Governance
31+
- **Canonical Model v0.2**: Stabilized the JSON schema for tokens, expressions, and block nodes.
32+
- **Reference Spec**: Updated `spec/canonical-model.md` to match the real-world implementation.
33+
- **Stability Policy**: Clarified policy for breaking changes in machine-readable outputs.
34+
35+
## Verification
36+
37+
Verified on the current release state with:
38+
39+
- `npm test`
40+
- `npm run check:all`
41+
- `node ./bin/orgscript.js export html ./examples/craft-business-lead-to-order.orgs`
42+
- `node ./bin/orgscript.js demo:generate`
43+
44+
## Project Status
45+
46+
v0.6.0 transforms OrgScript from a stable specification into a useful documentation engine. By providing high-quality, zero-config exporters for the Web (HTML) and for prose (Markdown), we are establishing OrgScript as a credible layer for organizational knowledge and process governance.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "orgscript",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "A human-readable, AI-friendly description language for business logic and operational systems.",
55
"license": "Apache-2.0",
66
"private": true,

0 commit comments

Comments
 (0)