Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 27, 2024
1 parent 8d607fb commit ee8ec4d
Show file tree
Hide file tree
Showing 18 changed files with 70 additions and 36 deletions.
7 changes: 0 additions & 7 deletions .changeset/big-teachers-shave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chatty-cheetahs-love.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/eight-meals-camp.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/small-lizards-float.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/docusaurus-plugin-typedoc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 2.0.0

### Patch Changes

- Updated peer dependencies
- typedoc-plugin-markdown@4.3.0

## 1.0.5 (2024-08-08)

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/docusaurus-plugin-typedoc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docusaurus-plugin-typedoc",
"version": "1.0.5",
"version": "2.0.0",
"description": "A Docusaurus plugin to integrate TypeDoc ( + typedoc-plugin-markdown ) into a Docusaurus project.",
"exports": {
".": "./dist/index.js",
Expand All @@ -20,7 +20,7 @@
},
"homepage": "http://typedoc-plugin-markdown.org/plugins/docusaurus",
"peerDependencies": {
"typedoc-plugin-markdown": ">=4.0.0"
"typedoc-plugin-markdown": ">=4.3.0"
},
"scripts": {
"lint": "eslint ./src",
Expand Down
7 changes: 7 additions & 0 deletions packages/typedoc-github-wiki-theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 3.0.0

### Patch Changes

- Updated peer dependencies
- typedoc-plugin-markdown@4.3.0

## 2.0.0 (2024-05-03)

### Breaking Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/typedoc-github-wiki-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typedoc-github-wiki-theme",
"version": "2.0.0",
"version": "3.0.0",
"description": "A TypeDoc ( + typedoc-plugin-markdown ) theme that generates Markdown compatible with Github Wiki.",
"exports": {
".": "./dist/index.js"
Expand Down Expand Up @@ -31,7 +31,7 @@
"author": "Thomas Grey",
"license": "MIT",
"peerDependencies": {
"typedoc-plugin-markdown": ">=4.1.0"
"typedoc-plugin-markdown": ">=4.3.0"
},
"keywords": [
"typedoc",
Expand Down
7 changes: 7 additions & 0 deletions packages/typedoc-gitlab-wiki-theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 3.0.0

### Patch Changes

- Updated peer dependencies
- typedoc-plugin-markdown@4.3.0

## 2.0.1 (2024-6-08)

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/typedoc-gitlab-wiki-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typedoc-gitlab-wiki-theme",
"version": "2.0.1",
"version": "3.0.0",
"description": "A TypeDoc ( + typedoc-plugin-markdown ) theme that generates Markdown compatible with Gitlab Wiki.",
"exports": {
".": "./dist/index.js"
Expand Down Expand Up @@ -31,7 +31,7 @@
"author": "Thomas Grey",
"license": "MIT",
"peerDependencies": {
"typedoc-plugin-markdown": ">=4.1.0"
"typedoc-plugin-markdown": ">=4.3.0"
},
"keywords": [
"typedoc",
Expand Down
7 changes: 7 additions & 0 deletions packages/typedoc-plugin-frontmatter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 2.0.0

### Patch Changes

- Updated peer dependencies
- typedoc-plugin-markdown@4.3.0

## 1.0.0 (2024-05-03)

- First major release.
4 changes: 2 additions & 2 deletions packages/typedoc-plugin-frontmatter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typedoc-plugin-frontmatter",
"version": "1.0.0",
"version": "2.0.0",
"description": "A plugin for TypeDoc ( + typedoc-plugin-markdown ) that prepends configurable frontmatter to page content.",
"exports": {
".": "./dist/index.js"
Expand Down Expand Up @@ -34,7 +34,7 @@
"yaml": "^2.3.4"
},
"peerDependencies": {
"typedoc-plugin-markdown": ">=4.1.0"
"typedoc-plugin-markdown": ">=4.3.0"
},
"keywords": [
"frontmatter",
Expand Down
15 changes: 15 additions & 0 deletions packages/typedoc-plugin-markdown/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 4.3.0

### Minor Changes

- Implemented typedoc 0.27 compatibility support.
- Exposed "typeDeclarationVisibility" option to provide a compacted output structure ([#703](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/703)).
- Exposed "pageTitleTemplates" option that accepts a string with placeholder or function arguments to control page titles ([#715](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/715)).
- Exposed formatting with prettier options "formatWithPrettier" and "prettierConfigFile" that enables additional formatting of output if Prettier is installed on a project.

### Patch Changes

- Improved structure of curried and overloaded signatures ([#714](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/714)) ([#718](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/718))
- The "hideGroupHeadings" option respects group order ([#716](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/716))
- Handle Optional types correctly ([#719](https://github.com/typedoc2md/typedoc-plugin-markdown/issues/719)).

## 4.3 Pre-release (2024-11-26)

This release introduces support for TypeDoc 0.27 and some additional UX features and improvements in addition to some bug fixes.
Expand Down
2 changes: 1 addition & 1 deletion packages/typedoc-plugin-markdown/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typedoc-plugin-markdown",
"version": "4.2.10",
"version": "4.3.0",
"description": "A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.",
"exports": {
".": "./dist/index.js"
Expand Down
7 changes: 7 additions & 0 deletions packages/typedoc-plugin-remark/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 2.0.0

### Patch Changes

- Updated peer dependencies
- typedoc-plugin-markdown@4.3.0

## 1.0.3 (2024-08-15)

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/typedoc-plugin-remark/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typedoc-plugin-remark",
"version": "1.0.3",
"version": "2.0.0",
"description": "A plugin for TypeDoc ( + typedoc-plugin-markdown ) that enables additional markdown transformations with remark plugins.",
"exports": {
".": "./dist/index.js"
Expand Down Expand Up @@ -35,7 +35,7 @@
"to-vfile": "^8.0.0"
},
"peerDependencies": {
"typedoc-plugin-markdown": ">=4.1.0"
"typedoc-plugin-markdown": ">=4.3.0"
},
"keywords": [
"typedoc",
Expand Down
7 changes: 7 additions & 0 deletions packages/typedoc-vitepress-theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 2.0.0

### Patch Changes

- Updated peer dependencies
- typedoc-plugin-markdown@4.3.0

## 1.0.2

### Patch Changes (2024-09-30)
Expand Down
4 changes: 2 additions & 2 deletions packages/typedoc-vitepress-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typedoc-vitepress-theme",
"version": "1.0.2",
"version": "2.0.0",
"description": "A TypeDoc ( + typedoc-plugin-markdown ) theme that generates Markdown compatible with VitePress.",
"exports": {
".": "./dist/index.js"
Expand Down Expand Up @@ -30,7 +30,7 @@
"test:update": "npm run build && npm test -- -u"
},
"peerDependencies": {
"typedoc-plugin-markdown": ">=4.1.0"
"typedoc-plugin-markdown": ">=4.3.0"
},
"license": "MIT",
"keywords": [
Expand Down

0 comments on commit ee8ec4d

Please sign in to comment.