diff --git a/.changeset/eleven-boats-give.md b/.changeset/eleven-boats-give.md deleted file mode 100644 index 7c468c841..000000000 --- a/.changeset/eleven-boats-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'typedoc-plugin-markdown': patch ---- - -- Always display inline object for tuple types (#745). diff --git a/.changeset/few-clouds-work.md b/.changeset/few-clouds-work.md deleted file mode 100644 index 2e3007db0..000000000 --- a/.changeset/few-clouds-work.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'typedoc-plugin-markdown': patch ---- - -- Strikeout deprecated items in reflection indexes. diff --git a/.changeset/fifty-kangaroos-dance.md b/.changeset/fifty-kangaroos-dance.md deleted file mode 100644 index da994cbda..000000000 --- a/.changeset/fifty-kangaroos-dance.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'typedoc-plugin-markdown': minor ---- - -- Expose "isDeprecated" flag to navigation model (#747). diff --git a/.changeset/healthy-camels-jump.md b/.changeset/healthy-camels-jump.md deleted file mode 100644 index 1e18dea20..000000000 --- a/.changeset/healthy-camels-jump.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'typedoc-plugin-markdown': minor ---- - -- Moved source link inline and exposed to all parent symbols (#746). diff --git a/.changeset/neat-monkeys-provide.md b/.changeset/neat-monkeys-provide.md deleted file mode 100644 index 17cb70a96..000000000 --- a/.changeset/neat-monkeys-provide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'typedoc-plugin-markdown': minor ---- - -- Remove extraneous "Index" headings. diff --git a/.changeset/rare-pigs-drop.md b/.changeset/rare-pigs-drop.md deleted file mode 100644 index 3fecf7ada..000000000 --- a/.changeset/rare-pigs-drop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'typedoc-plugin-markdown': minor ---- - -- Always assign HTML anchor ids to linkable symbols within table rows. diff --git a/.changeset/selfish-pens-live.md b/.changeset/selfish-pens-live.md deleted file mode 100644 index fea0109ff..000000000 --- a/.changeset/selfish-pens-live.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'typedoc-plugin-markdown': patch ---- - -- Fix inline formatting of types when when "useCodeBlocks" is used (#742). diff --git a/.changeset/swift-seahorses-warn.md b/.changeset/swift-seahorses-warn.md deleted file mode 100644 index 9f12af5ba..000000000 --- a/.changeset/swift-seahorses-warn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'typedoc-plugin-markdown': patch ---- - -- Expose group descriptions to module indexes. diff --git a/.changeset/tender-snails-dress.md b/.changeset/tender-snails-dress.md deleted file mode 100644 index 126ca3c9c..000000000 --- a/.changeset/tender-snails-dress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'typedoc-plugin-markdown': patch ---- - -- Expose global documents with "packages" entryPointStrategy. diff --git a/packages/docusaurus-plugin-typedoc/package.json b/packages/docusaurus-plugin-typedoc/package.json index e0fce82d6..6ce33d0a7 100644 --- a/packages/docusaurus-plugin-typedoc/package.json +++ b/packages/docusaurus-plugin-typedoc/package.json @@ -20,7 +20,7 @@ }, "homepage": "http://typedoc-plugin-markdown.org/plugins/docusaurus", "peerDependencies": { - "typedoc-plugin-markdown": ">=4.3.0" + "typedoc-plugin-markdown": ">=4.4.0" }, "scripts": { "lint": "eslint ./src", diff --git a/packages/typedoc-github-wiki-theme/package.json b/packages/typedoc-github-wiki-theme/package.json index d9e071506..4e78d77b1 100644 --- a/packages/typedoc-github-wiki-theme/package.json +++ b/packages/typedoc-github-wiki-theme/package.json @@ -31,7 +31,7 @@ "author": "Thomas Grey", "license": "MIT", "peerDependencies": { - "typedoc-plugin-markdown": ">=4.3.0" + "typedoc-plugin-markdown": ">=4.4.0" }, "keywords": [ "typedoc", diff --git a/packages/typedoc-gitlab-wiki-theme/package.json b/packages/typedoc-gitlab-wiki-theme/package.json index d6fcbbcdc..200135a10 100644 --- a/packages/typedoc-gitlab-wiki-theme/package.json +++ b/packages/typedoc-gitlab-wiki-theme/package.json @@ -31,7 +31,7 @@ "author": "Thomas Grey", "license": "MIT", "peerDependencies": { - "typedoc-plugin-markdown": ">=4.3.0" + "typedoc-plugin-markdown": ">=4.4.0" }, "keywords": [ "typedoc", diff --git a/packages/typedoc-plugin-frontmatter/package.json b/packages/typedoc-plugin-frontmatter/package.json index 357dbf0ee..0b83b4583 100644 --- a/packages/typedoc-plugin-frontmatter/package.json +++ b/packages/typedoc-plugin-frontmatter/package.json @@ -34,7 +34,7 @@ "yaml": "^2.3.4" }, "peerDependencies": { - "typedoc-plugin-markdown": ">=4.3.0" + "typedoc-plugin-markdown": ">=4.4.0" }, "keywords": [ "frontmatter", diff --git a/packages/typedoc-plugin-markdown/CHANGELOG.md b/packages/typedoc-plugin-markdown/CHANGELOG.md index 7c7f97afb..6b326061a 100644 --- a/packages/typedoc-plugin-markdown/CHANGELOG.md +++ b/packages/typedoc-plugin-markdown/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 4.4.0 + +### Minor Changes + +- Expose "isDeprecated" flag to navigation model ([#747](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/747)). +- Moved source link inline and exposed to all parent symbols ([#746](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/746)). +- Remove extraneous "Index" headings. +- Always assign HTML anchor ids to linkable symbols within table rows. + +### Patch Changes + +- Always display inline object for tuple types ([#745](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/745)). +- Strikeout deprecated items in reflection indexes. +- Fix inline formatting of types when when "useCodeBlocks" is used ([#742](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/742)). +- Expose group descriptions to module indexes. +- Expose global documents with "packages" entryPointStrategy. + ## Unreleased This release introduces structural UI enhancements and several bug fixes. diff --git a/packages/typedoc-plugin-markdown/package.json b/packages/typedoc-plugin-markdown/package.json index d4babd385..8be0f8377 100644 --- a/packages/typedoc-plugin-markdown/package.json +++ b/packages/typedoc-plugin-markdown/package.json @@ -1,6 +1,6 @@ { "name": "typedoc-plugin-markdown", - "version": "4.3.3", + "version": "4.4.0", "description": "A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.", "exports": { ".": "./dist/index.js" diff --git a/packages/typedoc-plugin-remark/package.json b/packages/typedoc-plugin-remark/package.json index 0f7dc7f09..2eacc8565 100644 --- a/packages/typedoc-plugin-remark/package.json +++ b/packages/typedoc-plugin-remark/package.json @@ -36,7 +36,7 @@ "unist-util-visit": "^5.0.0" }, "peerDependencies": { - "typedoc-plugin-markdown": ">=4.3.0" + "typedoc-plugin-markdown": ">=4.4.0" }, "keywords": [ "typedoc", diff --git a/packages/typedoc-vitepress-theme/package.json b/packages/typedoc-vitepress-theme/package.json index b54702e9a..6a96e9a36 100644 --- a/packages/typedoc-vitepress-theme/package.json +++ b/packages/typedoc-vitepress-theme/package.json @@ -30,7 +30,7 @@ "test:update": "npm run build && npm test -- -u" }, "peerDependencies": { - "typedoc-plugin-markdown": ">=4.3.0" + "typedoc-plugin-markdown": ">=4.4.0" }, "license": "MIT", "keywords": [