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 Sep 9, 2024
1 parent 3b135e8 commit a39cb73
Show file tree
Hide file tree
Showing 11 changed files with 44 additions and 24 deletions.
7 changes: 0 additions & 7 deletions .changeset/empty-donkeys-notice.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/five-bobcats-bow.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/large-shoes-applaud.md

This file was deleted.

13 changes: 13 additions & 0 deletions packages/language-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @mdx-js/language-server

## 0.5.0

### Minor Changes

- [#473](https://github.com/mdx-js/mdx-analyzer/pull/473) [`2854c38`](https://github.com/mdx-js/mdx-analyzer/commit/2854c38ceaf9202a9a3aa5ae33e50ca2a8c41f1e) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Convert the custom MDX syntax toggle request types into LSP commands.

### Patch Changes

- [#478](https://github.com/mdx-js/mdx-analyzer/pull/478) [`3b135e8`](https://github.com/mdx-js/mdx-analyzer/commit/3b135e82607f0d5d19f9cf27e6bb465543c7c841) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Use an asterisk to toggle emphasis

- Updated dependencies [[`3b135e8`](https://github.com/mdx-js/mdx-analyzer/commit/3b135e82607f0d5d19f9cf27e6bb465543c7c841), [`2854c38`](https://github.com/mdx-js/mdx-analyzer/commit/2854c38ceaf9202a9a3aa5ae33e50ca2a8c41f1e)]:
- @mdx-js/language-service@0.6.0

## 0.4.10

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/language-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mdx-js/language-server",
"version": "0.4.10",
"version": "0.5.0",
"type": "module",
"description": "A language server for MDX",
"repository": {
Expand Down Expand Up @@ -32,7 +32,7 @@
"test": "npm run test-api"
},
"dependencies": {
"@mdx-js/language-service": "0.5.8",
"@mdx-js/language-service": "0.6.0",
"@volar/language-server": "~2.4.0",
"load-plugin": "^6.0.0",
"remark-frontmatter": "^5.0.0",
Expand Down
10 changes: 10 additions & 0 deletions packages/language-service/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @mdx-js/language-service

## 0.6.0

### Minor Changes

- [#473](https://github.com/mdx-js/mdx-analyzer/pull/473) [`2854c38`](https://github.com/mdx-js/mdx-analyzer/commit/2854c38ceaf9202a9a3aa5ae33e50ca2a8c41f1e) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Convert the custom MDX syntax toggle request types into LSP commands.

### Patch Changes

- [#478](https://github.com/mdx-js/mdx-analyzer/pull/478) [`3b135e8`](https://github.com/mdx-js/mdx-analyzer/commit/3b135e82607f0d5d19f9cf27e6bb465543c7c841) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Use an asterisk to toggle emphasis

## 0.5.8

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/language-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mdx-js/language-service",
"version": "0.5.8",
"version": "0.6.0",
"type": "module",
"description": "MDX support for Volar",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions packages/typescript-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.0.6

### Patch Changes

- Updated dependencies [[`3b135e8`](https://github.com/mdx-js/mdx-analyzer/commit/3b135e82607f0d5d19f9cf27e6bb465543c7c841), [`2854c38`](https://github.com/mdx-js/mdx-analyzer/commit/2854c38ceaf9202a9a3aa5ae33e50ca2a8c41f1e)]:
- @mdx-js/language-service@0.6.0

## 0.0.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/typescript-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mdx-js/typescript-plugin",
"version": "0.0.5",
"version": "0.0.6",
"type": "module",
"description": "A TypeScript plugin to support language features in MDX files",
"repository": {
Expand Down Expand Up @@ -29,7 +29,7 @@
"test": "npm pack && npm run test-api"
},
"dependencies": {
"@mdx-js/language-service": "0.5.8",
"@mdx-js/language-service": "0.6.0",
"@volar/typescript": "~2.4.0",
"load-plugin": "^6.0.0",
"remark-frontmatter": "^5.0.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/vscode-mdx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.8.11

### Patch Changes

- [#478](https://github.com/mdx-js/mdx-analyzer/pull/478) [`3b135e8`](https://github.com/mdx-js/mdx-analyzer/commit/3b135e82607f0d5d19f9cf27e6bb465543c7c841) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Use an asterisk to toggle emphasis

- [#479](https://github.com/mdx-js/mdx-analyzer/pull/479) [`feab086`](https://github.com/mdx-js/mdx-analyzer/commit/feab0867b715e966f7fc0ceec42fdccca1e316b8) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Update the MDX grammar

## 1.8.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-mdx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-mdx",
"version": "1.8.10",
"version": "1.8.11",
"displayName": "MDX",
"description": "Language support for MDX",
"categories": [
Expand Down

0 comments on commit a39cb73

Please sign in to comment.