diff --git a/.changeset/initial-office-kit-release.md b/.changeset/initial-office-kit-release.md deleted file mode 100644 index 1563bb8..0000000 --- a/.changeset/initial-office-kit-release.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"@office-kit/docx": minor -"@office-kit/docx-preview": minor ---- - -Initial public release. - -`@office-kit/docx` is an OOXML-compliant (ECMA-376) `.docx` generation and -editing library for browsers and Node.js. It ships as a single self-contained -package: the OPC, XML, and WordprocessingML layers are bundled in, not -published separately. `@office-kit/docx-preview` renders any `Docx` value as a -read-only DOM tree by wrapping the OSS `docx-preview` renderer. diff --git a/CHANGELOG.md b/CHANGELOG.md index c638696..15e8a49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.1.0 + +### Minor Changes + +- 3302af3: Initial public release. + + `@office-kit/docx` is an OOXML-compliant (ECMA-376) `.docx` generation and + editing library for browsers and Node.js. It ships as a single self-contained + package: the OPC, XML, and WordprocessingML layers are bundled in, not + published separately. `@office-kit/docx-preview` renders any `Docx` value as a + read-only DOM tree by wrapping the OSS `docx-preview` renderer. + The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Each user-visible change is also tracked via [Changesets](https://github.com/changesets/changesets); @@ -13,6 +25,7 @@ this file is a hand-curated overview. standalone functions instead of classes. The motivation is tree-shaking: classes carry every method along with the prototype, so a bundler can't drop unused operations once an instance escapes. + - `Docx` is an `interface` (just `{ opc, document, partName, … }`). - `Docx.create(…)` → `createDocx(…)`. `Docx.open(bytes)` → `openDocx(bytes)`. `Docx.fromBlob(blob)` → `fromBlob(blob)`. diff --git a/package.json b/package.json index a6bb8de..bde6318 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@office-kit/docx", - "version": "0.0.0", + "version": "0.1.0", "description": "OOXML-compliant .docx generation for browser and Node.js.", "keywords": [ "docx", diff --git a/packages/preview/CHANGELOG.md b/packages/preview/CHANGELOG.md new file mode 100644 index 0000000..1230349 --- /dev/null +++ b/packages/preview/CHANGELOG.md @@ -0,0 +1,18 @@ +# @office-kit/docx-preview + +## 0.1.0 + +### Minor Changes + +- 3302af3: Initial public release. + + `@office-kit/docx` is an OOXML-compliant (ECMA-376) `.docx` generation and + editing library for browsers and Node.js. It ships as a single self-contained + package: the OPC, XML, and WordprocessingML layers are bundled in, not + published separately. `@office-kit/docx-preview` renders any `Docx` value as a + read-only DOM tree by wrapping the OSS `docx-preview` renderer. + +### Patch Changes + +- Updated dependencies [3302af3] + - @office-kit/docx@0.1.0 diff --git a/packages/preview/package.json b/packages/preview/package.json index fce12cf..77ba935 100644 --- a/packages/preview/package.json +++ b/packages/preview/package.json @@ -1,6 +1,6 @@ { "name": "@office-kit/docx-preview", - "version": "0.0.0", + "version": "0.1.0", "description": "Browser preview for word-kit .docx documents.", "keywords": [ "docx", diff --git a/site/CHANGELOG.md b/site/CHANGELOG.md new file mode 100644 index 0000000..ebecb6f --- /dev/null +++ b/site/CHANGELOG.md @@ -0,0 +1,9 @@ +# word-kit-site + +## 0.0.1 + +### Patch Changes + +- Updated dependencies [3302af3] + - @office-kit/docx@0.1.0 + - @office-kit/docx-preview@0.1.0 diff --git a/site/package.json b/site/package.json index 102b6c9..122198f 100644 --- a/site/package.json +++ b/site/package.json @@ -1,6 +1,6 @@ { "name": "word-kit-site", - "version": "0.0.0", + "version": "0.0.1", "private": true, "type": "module", "scripts": {