Skip to content

Commit 67a8adf

Browse files
committed
chore(release): align metadata with v0.9.0-rc1
1 parent 75add07 commit 67a8adf

File tree

7 files changed

+61
-6
lines changed

7 files changed

+61
-6
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.9.0-rc1] - 2026-03-29
10+
11+
- Prepared OrgScript for public distribution as a release candidate with npm/package metadata aligned to `0.9.0-rc1`.
12+
- Added `src/index.js` as a cleaner package entry point for library-style consumption.
13+
- Hardened repository metadata for GitHub, npm, and marketplace-facing usage.
14+
- Prepared the VS Code extension package for external distribution and aligned its metadata with the release candidate.
15+
- Added and polished GitHub Pages-style documentation site artifacts and publishing workflow support.
16+
- Added DE/EN handbook-style manuals and completed missing Mermaid demo artifacts in the showcase flow.
17+
918
## [0.8.0] - 2026-03-29
1019

1120
- Introduced `orgscript analyze <file>` for deterministic structural analysis (block counts, metrics, and complexity hints).

docs/OrgScript-Handbuch-DE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ OrgScript bietet ein mächtiges CLI-Werkzeug (`orgscript`):
3737
- **Git verwenden**: Versioniere deine Logik wie Code.
3838

3939
---
40-
*Version 0.8.0 / OrgScript Foundation*
40+
*Version 0.9.0-rc1 / OrgScript Release Candidate*

docs/OrgScript-Manual-EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ OrgScript provides a powerful CLI tool (`orgscript`):
3737
- **Version Control**: Store your business logic in Git to track changes and collaborate through pull requests.
3838

3939
---
40-
*Version 0.8.0 / OrgScript Foundation*
40+
*Version 0.9.0-rc1 / OrgScript Release Candidate*

docs/releases/v0.9.0-rc1.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# OrgScript v0.9.0-rc1
2+
3+
OrgScript v0.9.0-rc1 is the first packaging and distribution release candidate.
4+
5+
This release candidate focuses on making OrgScript easier to consume beyond the repository itself: as a package, as a VS Code extension project, and as a generated documentation/demo surface.
6+
7+
## Highlights
8+
9+
- release-candidate packaging metadata aligned for npm-style distribution
10+
- cleaner package entry via `src/index.js`
11+
- improved repository metadata for GitHub-facing consumption
12+
- VS Code extension package prepared for external distribution
13+
- GitHub Pages-style docs/site publishing support
14+
- DE/EN handbook-style manuals and completed showcase artifacts
15+
16+
## Packaging and distribution
17+
18+
- aligned the root package version to `0.9.0-rc1`
19+
- aligned the VS Code extension package version to `0.9.0-rc1`
20+
- kept `bin/`, `src/`, `spec/`, and release-facing root files in the package file list
21+
- retained the CLI and library entry layout for downstream usage
22+
23+
## Editor and docs distribution
24+
25+
- prepared the VS Code extension package metadata for marketplace-facing usage
26+
- kept the OrgScript syntax-highlighting extension consistent with the release candidate version
27+
- added DE/EN handbook material for easier onboarding outside the code-first audience
28+
- completed missing Mermaid showcase artifacts in the docs flow
29+
- kept the generated docs-site entry aligned with the current release candidate version
30+
31+
## Verification
32+
33+
Confirmed on the release-candidate preparation state:
34+
35+
- `npm test`
36+
- `npm run check:all`
37+
- `node ./bin/orgscript.js check ./examples/craft-business-lead-to-order.orgs`
38+
- `node ./bin/orgscript.js check ./examples/craft-business-lead-to-order.orgs --json`
39+
- `node ./bin/orgscript.js export markdown ./examples/order-approval.orgs`
40+
- `node ./bin/orgscript.js export mermaid ./examples/order-approval.orgs`
41+
42+
## Project status
43+
44+
OrgScript remains a human-readable, AI-interpretable description language for business logic, processes, rules, roles, policies, events, and operational systems.
45+
46+
v0.9.0-rc1 is about readiness for broader distribution, not new language surface.

docs/site/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ <h3>Service Escalation</h3>
8787

8888
<footer>
8989
<hr>
90-
<p>Generated by OrgScript v0.8.0 &bull; <a href="https://github.com/DKFuH/OrgScript">GitHub</a></p>
90+
<p>Generated by OrgScript v0.9.0-rc1 &bull; <a href="https://github.com/DKFuH/OrgScript">GitHub</a></p>
9191
</footer>
9292
</body>
93-
</html>
93+
</html>

editors/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "orgscript-vscode",
33
"displayName": "OrgScript",
44
"description": "Minimal VS Code language support for OrgScript (.orgs) files.",
5-
"version": "0.8.0",
5+
"version": "0.9.0-rc1",
66
"publisher": "dkfuh",
77
"icon": "icon.png",
88
"repository": {

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.8.0",
3+
"version": "0.9.0-rc1",
44
"description": "A human-readable, AI-friendly description language for business logic and operational systems.",
55
"license": "Apache-2.0",
66
"main": "./src/index.js",

0 commit comments

Comments
 (0)