From 2b8e9ca0dddd43294fffdad68454adebfa6ce761 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 19 May 2024 04:13:22 +0300 Subject: [PATCH] chore: bump version (#110) Co-authored-by: github-actions[bot] --- .changeset/nine-jeans-pay.md | 12 ----- .changeset/quiet-berries-sniff.md | 10 ---- examples/astro/CHANGELOG.md | 7 +++ examples/astro/package.json | 2 +- examples/example/CHANGELOG.md | 8 +++ examples/example/package.json | 6 +-- .../extract-keywords-example/CHANGELOG.md | 8 +++ .../extract-keywords-example/package.json | 6 +-- examples/next-blog-starter/CHANGELOG.md | 8 +++ examples/next-blog-starter/package.json | 6 +-- examples/org-braindump/CHANGELOG.md | 8 +++ examples/org-braindump/package.json | 6 +-- packages/astro-org/CHANGELOG.md | 8 +++ packages/astro-org/package.json | 6 +-- packages/orgast-util-to-string/package.json | 4 +- packages/orgast-util-visit-ids/package.json | 4 +- packages/orgx/CHANGELOG.md | 8 +++ packages/orgx/package.json | 2 +- packages/rollup-plugin-orgx/CHANGELOG.md | 7 +++ packages/rollup-plugin-orgx/package.json | 2 +- packages/uniorg-attach/package.json | 4 +- packages/uniorg-extract-keywords/package.json | 4 +- packages/uniorg-parse/CHANGELOG.md | 14 +++++ packages/uniorg-parse/package.json | 4 +- packages/uniorg-rehype/CHANGELOG.md | 14 +++++ packages/uniorg-rehype/package.json | 6 +-- packages/uniorg-slug/package.json | 6 +-- packages/uniorg-stringify/CHANGELOG.md | 14 +++++ packages/uniorg-stringify/package.json | 6 +-- packages/uniorg/CHANGELOG.md | 14 +++++ packages/uniorg/package.json | 2 +- pnpm-lock.yaml | 52 +++++++++---------- 32 files changed, 182 insertions(+), 86 deletions(-) delete mode 100644 .changeset/nine-jeans-pay.md delete mode 100644 .changeset/quiet-berries-sniff.md diff --git a/.changeset/nine-jeans-pay.md b/.changeset/nine-jeans-pay.md deleted file mode 100644 index b891a06..0000000 --- a/.changeset/nine-jeans-pay.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'uniorg-parse': major -'uniorg-stringify': minor -'uniorg-rehype': minor -'uniorg': minor ---- - -Support `export-snippet` in uniorg, uniorg-parse, uniorg-rehype, and uniorg-stringify. - -`export-snippet` has the following form: `@@backend:value@@`. Example: `@@html:@@some text@@html:`. - -This is a breaking change for uniorg-parse as it may output nodes unknown to downstream users (uniorg-rehype and uniorg-stringify). If you upgrade uniorg-parse, you should also upgrade uniorg-rehype and uniorg-stringify to the corresponding versions. diff --git a/.changeset/quiet-berries-sniff.md b/.changeset/quiet-berries-sniff.md deleted file mode 100644 index d482fa5..0000000 --- a/.changeset/quiet-berries-sniff.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'uniorg-parse': major -'uniorg-stringify': minor -'uniorg-rehype': minor -'uniorg': minor ---- - -Support `line-break` in uniorg, uniorg-parse, uniorg-rehype, and uniorg-stringify. - -This is a breaking change for uniorg-parse as it may output nodes unknown to downstream users (uniorg-rehype and uniorg-stringify). If you upgrade uniorg-parse, you should also upgrade uniorg-rehype and uniorg-stringify to the corresponding versions. diff --git a/examples/astro/CHANGELOG.md b/examples/astro/CHANGELOG.md index 37476b9..39a535f 100644 --- a/examples/astro/CHANGELOG.md +++ b/examples/astro/CHANGELOG.md @@ -1,5 +1,12 @@ # @uniorgjs/astro-example +## 0.0.3 + +### Patch Changes + +- Updated dependencies []: + - astro-org@2.1.1 + ## 0.0.2 ### Patch Changes diff --git a/examples/astro/package.json b/examples/astro/package.json index fe8f543..dcfccd0 100644 --- a/examples/astro/package.json +++ b/examples/astro/package.json @@ -1,7 +1,7 @@ { "name": "@uniorgjs/astro-example", "type": "module", - "version": "0.0.2", + "version": "0.0.3", "private": true, "scripts": { "dev": "astro dev", diff --git a/examples/example/CHANGELOG.md b/examples/example/CHANGELOG.md index 5192120..4676bc4 100644 --- a/examples/example/CHANGELOG.md +++ b/examples/example/CHANGELOG.md @@ -1,5 +1,13 @@ # example +## 1.0.3 + +### Patch Changes + +- Updated dependencies [[`dbf6452`](https://github.com/rasendubi/uniorg/commit/dbf6452921ad03120bb9df87746aef52ac72b5fb), [`b45baf9`](https://github.com/rasendubi/uniorg/commit/b45baf992db4659e2732e888bd3860b9eff25504)]: + - uniorg-parse@3.0.0 + - uniorg-rehype@1.2.0 + ## 1.0.2 ### Patch Changes diff --git a/examples/example/package.json b/examples/example/package.json index f965aa8..0a18af2 100644 --- a/examples/example/package.json +++ b/examples/example/package.json @@ -1,6 +1,6 @@ { "name": "example", - "version": "1.0.2", + "version": "1.0.3", "private": true, "type": "module", "description": "Simple example of uniorg usage.", @@ -14,7 +14,7 @@ "rehype-stringify": "10.0.0", "unified": "11.0.4", "unified-stream": "3.0.0", - "uniorg-parse": "^2.1.1", - "uniorg-rehype": "^1.1.1" + "uniorg-parse": "^3.0.0", + "uniorg-rehype": "^1.2.0" } } diff --git a/examples/extract-keywords-example/CHANGELOG.md b/examples/extract-keywords-example/CHANGELOG.md index 3df825a..d28e221 100644 --- a/examples/extract-keywords-example/CHANGELOG.md +++ b/examples/extract-keywords-example/CHANGELOG.md @@ -1,5 +1,13 @@ # extract-keywords-example +## 1.0.3 + +### Patch Changes + +- Updated dependencies [[`dbf6452`](https://github.com/rasendubi/uniorg/commit/dbf6452921ad03120bb9df87746aef52ac72b5fb), [`b45baf9`](https://github.com/rasendubi/uniorg/commit/b45baf992db4659e2732e888bd3860b9eff25504)]: + - uniorg-parse@3.0.0 + - uniorg-rehype@1.2.0 + ## 1.0.2 ### Patch Changes diff --git a/examples/extract-keywords-example/package.json b/examples/extract-keywords-example/package.json index dd7beaa..5ed7b83 100644 --- a/examples/extract-keywords-example/package.json +++ b/examples/extract-keywords-example/package.json @@ -1,6 +1,6 @@ { "name": "extract-keywords-example", - "version": "1.0.2", + "version": "1.0.3", "private": true, "type": "module", "description": "Example of using uniorg-extract-keywords", @@ -17,7 +17,7 @@ "to-vfile": "8.0.0", "unified": "11.0.4", "uniorg-extract-keywords": "^1.0.1", - "uniorg-parse": "^2.1.1", - "uniorg-rehype": "^1.1.1" + "uniorg-parse": "^3.0.0", + "uniorg-rehype": "^1.2.0" } } diff --git a/examples/next-blog-starter/CHANGELOG.md b/examples/next-blog-starter/CHANGELOG.md index 8e5f3d9..4335b4f 100644 --- a/examples/next-blog-starter/CHANGELOG.md +++ b/examples/next-blog-starter/CHANGELOG.md @@ -1,5 +1,13 @@ # blog-starter +## 1.0.3 + +### Patch Changes + +- Updated dependencies [[`dbf6452`](https://github.com/rasendubi/uniorg/commit/dbf6452921ad03120bb9df87746aef52ac72b5fb), [`b45baf9`](https://github.com/rasendubi/uniorg/commit/b45baf992db4659e2732e888bd3860b9eff25504)]: + - uniorg-parse@3.0.0 + - uniorg-rehype@1.2.0 + ## 1.0.2 ### Patch Changes diff --git a/examples/next-blog-starter/package.json b/examples/next-blog-starter/package.json index 39758c8..ff7228d 100644 --- a/examples/next-blog-starter/package.json +++ b/examples/next-blog-starter/package.json @@ -1,6 +1,6 @@ { "name": "blog-starter", - "version": "1.0.2", + "version": "1.0.3", "private": true, "scripts": { "dev": "next", @@ -16,8 +16,8 @@ "rehype-stringify": "10.0.0", "unified": "11.0.4", "uniorg-extract-keywords": "^1.0.1", - "uniorg-parse": "^2.1.1", - "uniorg-rehype": "^1.1.1" + "uniorg-parse": "^3.0.0", + "uniorg-rehype": "^1.2.0" }, "devDependencies": { "autoprefixer": "^10.4.16", diff --git a/examples/org-braindump/CHANGELOG.md b/examples/org-braindump/CHANGELOG.md index 44d7263..c43e80b 100644 --- a/examples/org-braindump/CHANGELOG.md +++ b/examples/org-braindump/CHANGELOG.md @@ -1,5 +1,13 @@ # org-braindump +## 1.0.3 + +### Patch Changes + +- Updated dependencies [[`dbf6452`](https://github.com/rasendubi/uniorg/commit/dbf6452921ad03120bb9df87746aef52ac72b5fb), [`b45baf9`](https://github.com/rasendubi/uniorg/commit/b45baf992db4659e2732e888bd3860b9eff25504)]: + - uniorg-parse@3.0.0 + - uniorg-rehype@1.2.0 + ## 1.0.2 ### Patch Changes diff --git a/examples/org-braindump/package.json b/examples/org-braindump/package.json index 4653637..b045768 100644 --- a/examples/org-braindump/package.json +++ b/examples/org-braindump/package.json @@ -1,6 +1,6 @@ { "name": "org-braindump", - "version": "1.0.2", + "version": "1.0.3", "private": true, "scripts": { "dev": "next dev", @@ -19,8 +19,8 @@ "trough": "2.1.0", "unified": "11.0.4", "uniorg-extract-keywords": "^1.0.1", - "uniorg-parse": "^2.1.1", - "uniorg-rehype": "^1.1.1", + "uniorg-parse": "^3.0.0", + "uniorg-rehype": "^1.2.0", "uniorg-slug": "^1.0.1", "vfile-find-down": "7.1.0", "vfile-reporter": "8.1.0" diff --git a/packages/astro-org/CHANGELOG.md b/packages/astro-org/CHANGELOG.md index 9f27924..ab66d9f 100644 --- a/packages/astro-org/CHANGELOG.md +++ b/packages/astro-org/CHANGELOG.md @@ -1,5 +1,13 @@ # astro-org +## 2.1.1 + +### Patch Changes + +- Updated dependencies [[`dbf6452`](https://github.com/rasendubi/uniorg/commit/dbf6452921ad03120bb9df87746aef52ac72b5fb), [`b45baf9`](https://github.com/rasendubi/uniorg/commit/b45baf992db4659e2732e888bd3860b9eff25504)]: + - uniorg-parse@3.0.0 + - rollup-plugin-orgx@1.0.2 + ## 2.1.0 ### Minor Changes diff --git a/packages/astro-org/package.json b/packages/astro-org/package.json index c1e2a48..0e95a2e 100644 --- a/packages/astro-org/package.json +++ b/packages/astro-org/package.json @@ -1,6 +1,6 @@ { "name": "astro-org", - "version": "2.1.0", + "version": "2.1.1", "description": "Astro plugin to import org-mode files.", "type": "module", "main": "lib/index.js", @@ -30,10 +30,10 @@ "dependencies": { "acorn": "^8.11.2", "orgast-util-visit-ids": "^1.0.0", - "rollup-plugin-orgx": "^1.0.0", + "rollup-plugin-orgx": "^1.0.2", "unified": "^11.0.4", "uniorg-extract-keywords": "^1.0.0", - "uniorg-parse": "^2.1.1", + "uniorg-parse": "^3.0.0", "uniorg-slug": "^1.0.0", "vfile": "^6.0.1" }, diff --git a/packages/orgast-util-to-string/package.json b/packages/orgast-util-to-string/package.json index 8f048ce..0786b27 100644 --- a/packages/orgast-util-to-string/package.json +++ b/packages/orgast-util-to-string/package.json @@ -42,7 +42,7 @@ "@types/unist": "3.0.2", "jest": "29.7.0", "typescript": "5.2.2", - "uniorg": "^1.1.1", - "uniorg-parse": "^2.1.1" + "uniorg": "^1.2.0", + "uniorg-parse": "^3.0.0" } } diff --git a/packages/orgast-util-visit-ids/package.json b/packages/orgast-util-visit-ids/package.json index e2b8721..bdacbe6 100644 --- a/packages/orgast-util-visit-ids/package.json +++ b/packages/orgast-util-visit-ids/package.json @@ -42,8 +42,8 @@ "@types/unist": "3.0.2", "jest": "29.7.0", "typescript": "5.2.2", - "uniorg": "^1.1.1", - "uniorg-parse": "^2.1.1" + "uniorg": "^1.2.0", + "uniorg-parse": "^3.0.0" }, "dependencies": { "unist-util-visit-parents": "6.0.1" diff --git a/packages/orgx/CHANGELOG.md b/packages/orgx/CHANGELOG.md index b8a6573..b2474fe 100644 --- a/packages/orgx/CHANGELOG.md +++ b/packages/orgx/CHANGELOG.md @@ -1,5 +1,13 @@ # @uniorgjs/orgx +## 1.0.6 + +### Patch Changes + +- Updated dependencies [[`dbf6452`](https://github.com/rasendubi/uniorg/commit/dbf6452921ad03120bb9df87746aef52ac72b5fb), [`b45baf9`](https://github.com/rasendubi/uniorg/commit/b45baf992db4659e2732e888bd3860b9eff25504)]: + - uniorg-parse@3.0.0 + - uniorg-rehype@1.2.0 + ## 1.0.5 ### Patch Changes diff --git a/packages/orgx/package.json b/packages/orgx/package.json index 6ac2b97..3d33778 100644 --- a/packages/orgx/package.json +++ b/packages/orgx/package.json @@ -1,6 +1,6 @@ { "name": "@uniorgjs/orgx", - "version": "1.0.5", + "version": "1.0.6", "description": "Org-mode to JS compiler", "type": "module", "types": "types/index.d.ts", diff --git a/packages/rollup-plugin-orgx/CHANGELOG.md b/packages/rollup-plugin-orgx/CHANGELOG.md index f83f7aa..839c03c 100644 --- a/packages/rollup-plugin-orgx/CHANGELOG.md +++ b/packages/rollup-plugin-orgx/CHANGELOG.md @@ -1,5 +1,12 @@ # rollup-plugin-orgx +## 1.0.2 + +### Patch Changes + +- Updated dependencies []: + - @uniorgjs/orgx@1.0.6 + ## 1.0.1 ### Patch Changes diff --git a/packages/rollup-plugin-orgx/package.json b/packages/rollup-plugin-orgx/package.json index f54ed70..a156db8 100644 --- a/packages/rollup-plugin-orgx/package.json +++ b/packages/rollup-plugin-orgx/package.json @@ -1,6 +1,6 @@ { "name": "rollup-plugin-orgx", - "version": "1.0.1", + "version": "1.0.2", "description": "Rollup plugin to transform org-mode files to JS.", "type": "module", "main": "lib/index.js", diff --git a/packages/uniorg-attach/package.json b/packages/uniorg-attach/package.json index 95617bc..a1e69f3 100644 --- a/packages/uniorg-attach/package.json +++ b/packages/uniorg-attach/package.json @@ -43,8 +43,8 @@ "jest": "29.7.0", "typescript": "5.2.2", "unified": "11.0.4", - "uniorg": "^1.1.1", - "uniorg-parse": "^2.1.1", + "uniorg": "^1.2.0", + "uniorg-parse": "^3.0.0", "vfile": "6.0.1", "yaml": "^2.3.4" }, diff --git a/packages/uniorg-extract-keywords/package.json b/packages/uniorg-extract-keywords/package.json index 0e5ceb3..dc5d617 100644 --- a/packages/uniorg-extract-keywords/package.json +++ b/packages/uniorg-extract-keywords/package.json @@ -41,8 +41,8 @@ "jest": "29.7.0", "typescript": "5.2.2", "unified": "11.0.4", - "uniorg": "^1.1.1", - "uniorg-parse": "^2.1.1", + "uniorg": "^1.2.0", + "uniorg-parse": "^3.0.0", "vfile": "^6.0.1" }, "dependencies": { diff --git a/packages/uniorg-parse/CHANGELOG.md b/packages/uniorg-parse/CHANGELOG.md index 8f8f81e..fad477c 100644 --- a/packages/uniorg-parse/CHANGELOG.md +++ b/packages/uniorg-parse/CHANGELOG.md @@ -1,5 +1,19 @@ # uniorg-parse +## 3.0.0 + +### Major Changes + +- [#109](https://github.com/rasendubi/uniorg/pull/109) [`dbf6452`](https://github.com/rasendubi/uniorg/commit/dbf6452921ad03120bb9df87746aef52ac72b5fb) Thanks [@rasendubi](https://github.com/rasendubi)! - Support `export-snippet` in uniorg, uniorg-parse, uniorg-rehype, and uniorg-stringify. + + `export-snippet` has the following form: `@@backend:value@@`. Example: `@@html:@@some text@@html:`. + + This is a breaking change for uniorg-parse as it may output nodes unknown to downstream users (uniorg-rehype and uniorg-stringify). If you upgrade uniorg-parse, you should also upgrade uniorg-rehype and uniorg-stringify to the corresponding versions. + +- [#111](https://github.com/rasendubi/uniorg/pull/111) [`b45baf9`](https://github.com/rasendubi/uniorg/commit/b45baf992db4659e2732e888bd3860b9eff25504) Thanks [@rasendubi](https://github.com/rasendubi)! - Support `line-break` in uniorg, uniorg-parse, uniorg-rehype, and uniorg-stringify. + + This is a breaking change for uniorg-parse as it may output nodes unknown to downstream users (uniorg-rehype and uniorg-stringify). If you upgrade uniorg-parse, you should also upgrade uniorg-rehype and uniorg-stringify to the corresponding versions. + ## 2.1.1 ### Patch Changes diff --git a/packages/uniorg-parse/package.json b/packages/uniorg-parse/package.json index 15025ac..69324ff 100644 --- a/packages/uniorg-parse/package.json +++ b/packages/uniorg-parse/package.json @@ -1,6 +1,6 @@ { "name": "uniorg-parse", - "version": "2.1.1", + "version": "3.0.0", "type": "module", "description": "uniorg plugin to parse org-mode", "keywords": [ @@ -44,7 +44,7 @@ "ts-jest": "^29.1.1", "typescript": "5.2.2", "unified": "^11.0.4", - "uniorg": "^1.1.1", + "uniorg": "^1.2.0", "yaml": "^2.3.4" }, "dependencies": { diff --git a/packages/uniorg-rehype/CHANGELOG.md b/packages/uniorg-rehype/CHANGELOG.md index 7231053..692c804 100644 --- a/packages/uniorg-rehype/CHANGELOG.md +++ b/packages/uniorg-rehype/CHANGELOG.md @@ -1,5 +1,19 @@ # uniorg-rehype +## 1.2.0 + +### Minor Changes + +- [#109](https://github.com/rasendubi/uniorg/pull/109) [`dbf6452`](https://github.com/rasendubi/uniorg/commit/dbf6452921ad03120bb9df87746aef52ac72b5fb) Thanks [@rasendubi](https://github.com/rasendubi)! - Support `export-snippet` in uniorg, uniorg-parse, uniorg-rehype, and uniorg-stringify. + + `export-snippet` has the following form: `@@backend:value@@`. Example: `@@html:@@some text@@html:`. + + This is a breaking change for uniorg-parse as it may output nodes unknown to downstream users (uniorg-rehype and uniorg-stringify). If you upgrade uniorg-parse, you should also upgrade uniorg-rehype and uniorg-stringify to the corresponding versions. + +- [#111](https://github.com/rasendubi/uniorg/pull/111) [`b45baf9`](https://github.com/rasendubi/uniorg/commit/b45baf992db4659e2732e888bd3860b9eff25504) Thanks [@rasendubi](https://github.com/rasendubi)! - Support `line-break` in uniorg, uniorg-parse, uniorg-rehype, and uniorg-stringify. + + This is a breaking change for uniorg-parse as it may output nodes unknown to downstream users (uniorg-rehype and uniorg-stringify). If you upgrade uniorg-parse, you should also upgrade uniorg-rehype and uniorg-stringify to the corresponding versions. + ## 1.1.1 ### Patch Changes diff --git a/packages/uniorg-rehype/package.json b/packages/uniorg-rehype/package.json index 7c84171..3e45c45 100644 --- a/packages/uniorg-rehype/package.json +++ b/packages/uniorg-rehype/package.json @@ -1,6 +1,6 @@ { "name": "uniorg-rehype", - "version": "1.1.1", + "version": "1.2.0", "type": "module", "description": "uniorg plugin to transform to rehype", "keywords": [ @@ -49,8 +49,8 @@ "ts-jest": "^29.1.1", "typescript": "5.2.2", "unified": "11.0.4", - "uniorg": "^1.1.1", - "uniorg-parse": "^2.1.1" + "uniorg": "^1.2.0", + "uniorg-parse": "^3.0.0" }, "dependencies": { "hastscript": "8.0.0", diff --git a/packages/uniorg-slug/package.json b/packages/uniorg-slug/package.json index 6f7cb6f..632fe70 100644 --- a/packages/uniorg-slug/package.json +++ b/packages/uniorg-slug/package.json @@ -48,9 +48,9 @@ "rehype-stringify": "10.0.0", "typescript": "5.2.2", "unified": "^11.0.4", - "uniorg": "^1.1.1", - "uniorg-parse": "^2.1.1", - "uniorg-rehype": "^1.1.1", + "uniorg": "^1.2.0", + "uniorg-parse": "^3.0.0", + "uniorg-rehype": "^1.2.0", "unist-util-find": "^3.0.0", "vfile": "^6.0.1" } diff --git a/packages/uniorg-stringify/CHANGELOG.md b/packages/uniorg-stringify/CHANGELOG.md index faa48cb..9024bac 100644 --- a/packages/uniorg-stringify/CHANGELOG.md +++ b/packages/uniorg-stringify/CHANGELOG.md @@ -1,5 +1,19 @@ # uniorg-stringify +## 1.3.0 + +### Minor Changes + +- [#109](https://github.com/rasendubi/uniorg/pull/109) [`dbf6452`](https://github.com/rasendubi/uniorg/commit/dbf6452921ad03120bb9df87746aef52ac72b5fb) Thanks [@rasendubi](https://github.com/rasendubi)! - Support `export-snippet` in uniorg, uniorg-parse, uniorg-rehype, and uniorg-stringify. + + `export-snippet` has the following form: `@@backend:value@@`. Example: `@@html:@@some text@@html:`. + + This is a breaking change for uniorg-parse as it may output nodes unknown to downstream users (uniorg-rehype and uniorg-stringify). If you upgrade uniorg-parse, you should also upgrade uniorg-rehype and uniorg-stringify to the corresponding versions. + +- [#111](https://github.com/rasendubi/uniorg/pull/111) [`b45baf9`](https://github.com/rasendubi/uniorg/commit/b45baf992db4659e2732e888bd3860b9eff25504) Thanks [@rasendubi](https://github.com/rasendubi)! - Support `line-break` in uniorg, uniorg-parse, uniorg-rehype, and uniorg-stringify. + + This is a breaking change for uniorg-parse as it may output nodes unknown to downstream users (uniorg-rehype and uniorg-stringify). If you upgrade uniorg-parse, you should also upgrade uniorg-rehype and uniorg-stringify to the corresponding versions. + ## 1.2.0 ### Minor Changes diff --git a/packages/uniorg-stringify/package.json b/packages/uniorg-stringify/package.json index 5f21f38..5e53ba6 100644 --- a/packages/uniorg-stringify/package.json +++ b/packages/uniorg-stringify/package.json @@ -1,6 +1,6 @@ { "name": "uniorg-stringify", - "version": "1.2.0", + "version": "1.3.0", "description": "uniorg plugin to serialize org-mode", "type": "module", "keywords": [ @@ -44,8 +44,8 @@ "jest": "29.7.0", "typescript": "5.2.2", "unified": "11.0.4", - "uniorg": "^1.1.1", - "uniorg-parse": "^2.1.1", + "uniorg": "^1.2.0", + "uniorg-parse": "^3.0.0", "vfile": "6.0.1" } } diff --git a/packages/uniorg/CHANGELOG.md b/packages/uniorg/CHANGELOG.md index 2db703a..26a5ea9 100644 --- a/packages/uniorg/CHANGELOG.md +++ b/packages/uniorg/CHANGELOG.md @@ -1,5 +1,19 @@ # uniorg +## 1.2.0 + +### Minor Changes + +- [#109](https://github.com/rasendubi/uniorg/pull/109) [`dbf6452`](https://github.com/rasendubi/uniorg/commit/dbf6452921ad03120bb9df87746aef52ac72b5fb) Thanks [@rasendubi](https://github.com/rasendubi)! - Support `export-snippet` in uniorg, uniorg-parse, uniorg-rehype, and uniorg-stringify. + + `export-snippet` has the following form: `@@backend:value@@`. Example: `@@html:@@some text@@html:`. + + This is a breaking change for uniorg-parse as it may output nodes unknown to downstream users (uniorg-rehype and uniorg-stringify). If you upgrade uniorg-parse, you should also upgrade uniorg-rehype and uniorg-stringify to the corresponding versions. + +- [#111](https://github.com/rasendubi/uniorg/pull/111) [`b45baf9`](https://github.com/rasendubi/uniorg/commit/b45baf992db4659e2732e888bd3860b9eff25504) Thanks [@rasendubi](https://github.com/rasendubi)! - Support `line-break` in uniorg, uniorg-parse, uniorg-rehype, and uniorg-stringify. + + This is a breaking change for uniorg-parse as it may output nodes unknown to downstream users (uniorg-rehype and uniorg-stringify). If you upgrade uniorg-parse, you should also upgrade uniorg-rehype and uniorg-stringify to the corresponding versions. + ## 1.1.1 ### Patch Changes diff --git a/packages/uniorg/package.json b/packages/uniorg/package.json index a7bef8a..b3e2375 100644 --- a/packages/uniorg/package.json +++ b/packages/uniorg/package.json @@ -1,6 +1,6 @@ { "name": "uniorg", - "version": "1.1.1", + "version": "1.2.0", "type": "module", "description": "uniorg type definitions", "keywords": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c36db7a..1e85ca0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -66,10 +66,10 @@ importers: specifier: 3.0.0 version: 3.0.0 uniorg-parse: - specifier: ^2.1.1 + specifier: ^3.0.0 version: link:../../packages/uniorg-parse uniorg-rehype: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../../packages/uniorg-rehype examples/extract-keywords-example: @@ -90,10 +90,10 @@ importers: specifier: ^1.0.1 version: link:../../packages/uniorg-extract-keywords uniorg-parse: - specifier: ^2.1.1 + specifier: ^3.0.0 version: link:../../packages/uniorg-parse uniorg-rehype: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../../packages/uniorg-rehype examples/next-blog-starter: @@ -123,10 +123,10 @@ importers: specifier: ^1.0.1 version: link:../../packages/uniorg-extract-keywords uniorg-parse: - specifier: ^2.1.1 + specifier: ^3.0.0 version: link:../../packages/uniorg-parse uniorg-rehype: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../../packages/uniorg-rehype devDependencies: autoprefixer: @@ -181,10 +181,10 @@ importers: specifier: ^1.0.1 version: link:../../packages/uniorg-extract-keywords uniorg-parse: - specifier: ^2.1.1 + specifier: ^3.0.0 version: link:../../packages/uniorg-parse uniorg-rehype: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../../packages/uniorg-rehype uniorg-slug: specifier: ^1.0.1 @@ -205,7 +205,7 @@ importers: specifier: ^1.0.0 version: link:../orgast-util-visit-ids rollup-plugin-orgx: - specifier: ^1.0.0 + specifier: ^1.0.2 version: link:../rollup-plugin-orgx unified: specifier: ^11.0.4 @@ -214,7 +214,7 @@ importers: specifier: ^1.0.0 version: link:../uniorg-extract-keywords uniorg-parse: - specifier: ^2.1.1 + specifier: ^3.0.0 version: link:../uniorg-parse uniorg-slug: specifier: ^1.0.0 @@ -248,10 +248,10 @@ importers: specifier: 5.2.2 version: 5.2.2 uniorg: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../uniorg uniorg-parse: - specifier: ^2.1.1 + specifier: ^3.0.0 version: link:../uniorg-parse packages/orgast-util-visit-ids: @@ -273,10 +273,10 @@ importers: specifier: 5.2.2 version: 5.2.2 uniorg: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../uniorg uniorg-parse: - specifier: ^2.1.1 + specifier: ^3.0.0 version: link:../uniorg-parse packages/orgx: @@ -370,10 +370,10 @@ importers: specifier: 11.0.4 version: 11.0.4 uniorg: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../uniorg uniorg-parse: - specifier: ^2.1.1 + specifier: ^3.0.0 version: link:../uniorg-parse vfile: specifier: 6.0.1 @@ -404,10 +404,10 @@ importers: specifier: 11.0.4 version: 11.0.4 uniorg: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../uniorg uniorg-parse: - specifier: ^2.1.1 + specifier: ^3.0.0 version: link:../uniorg-parse vfile: specifier: ^6.0.1 @@ -447,7 +447,7 @@ importers: specifier: ^11.0.4 version: 11.0.4 uniorg: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../uniorg yaml: specifier: ^2.3.4 @@ -493,10 +493,10 @@ importers: specifier: 11.0.4 version: 11.0.4 uniorg: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../uniorg uniorg-parse: - specifier: ^2.1.1 + specifier: ^3.0.0 version: link:../uniorg-parse packages/uniorg-slug: @@ -530,13 +530,13 @@ importers: specifier: ^11.0.4 version: 11.0.4 uniorg: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../uniorg uniorg-parse: - specifier: ^2.1.1 + specifier: ^3.0.0 version: link:../uniorg-parse uniorg-rehype: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../uniorg-rehype unist-util-find: specifier: ^3.0.0 @@ -563,10 +563,10 @@ importers: specifier: 11.0.4 version: 11.0.4 uniorg: - specifier: ^1.1.1 + specifier: ^1.2.0 version: link:../uniorg uniorg-parse: - specifier: ^2.1.1 + specifier: ^3.0.0 version: link:../uniorg-parse vfile: specifier: 6.0.1