Skip to content

Commit a394ea8

Browse files
Version Packages (#449)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 9767738 commit a394ea8

File tree

10 files changed

+44
-22
lines changed

10 files changed

+44
-22
lines changed

.changeset/cold-turtles-divide.md

-8
This file was deleted.

.changeset/friendly-toes-rescue.md

-8
This file was deleted.

packages/language-server/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @mdx-js/language-server
22

3+
## 0.4.9
4+
5+
### Patch Changes
6+
7+
- [#450](https://github.com/mdx-js/mdx-analyzer/pull/450) [`9767738`](https://github.com/mdx-js/mdx-analyzer/commit/976773851618fcc2018671d56d7902216873ceb6) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Solve a regression caused by TypeScript 5.5
8+
9+
- [#446](https://github.com/mdx-js/mdx-analyzer/pull/446) [`044776e`](https://github.com/mdx-js/mdx-analyzer/commit/044776e8e156cb5fd42e4f016215b9eefec894bd) Thanks [@johnsoncodehk](https://github.com/johnsoncodehk)! - Update to Volar 2.3.
10+
11+
- Updated dependencies [[`9767738`](https://github.com/mdx-js/mdx-analyzer/commit/976773851618fcc2018671d56d7902216873ceb6), [`044776e`](https://github.com/mdx-js/mdx-analyzer/commit/044776e8e156cb5fd42e4f016215b9eefec894bd)]:
12+
- @mdx-js/language-service@0.5.7
13+
314
## 0.4.8
415

516
### Patch Changes

packages/language-server/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mdx-js/language-server",
3-
"version": "0.4.8",
3+
"version": "0.4.9",
44
"type": "module",
55
"description": "A language server for MDX",
66
"repository": {
@@ -32,7 +32,7 @@
3232
"test": "npm run test-api"
3333
},
3434
"dependencies": {
35-
"@mdx-js/language-service": "0.5.6",
35+
"@mdx-js/language-service": "0.5.7",
3636
"@volar/language-server": "~2.3.0",
3737
"load-plugin": "^6.0.0",
3838
"remark-frontmatter": "^5.0.0",

packages/language-service/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @mdx-js/language-service
22

3+
## 0.5.7
4+
5+
### Patch Changes
6+
7+
- [#450](https://github.com/mdx-js/mdx-analyzer/pull/450) [`9767738`](https://github.com/mdx-js/mdx-analyzer/commit/976773851618fcc2018671d56d7902216873ceb6) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Solve a regression caused by TypeScript 5.5
8+
9+
- [#446](https://github.com/mdx-js/mdx-analyzer/pull/446) [`044776e`](https://github.com/mdx-js/mdx-analyzer/commit/044776e8e156cb5fd42e4f016215b9eefec894bd) Thanks [@johnsoncodehk](https://github.com/johnsoncodehk)! - Update to Volar 2.3.
10+
311
## 0.5.6
412

513
### Patch Changes

packages/language-service/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mdx-js/language-service",
3-
"version": "0.5.6",
3+
"version": "0.5.7",
44
"type": "module",
55
"description": "MDX support for Volar",
66
"repository": {

packages/typescript-plugin/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 0.0.4
4+
5+
### Patch Changes
6+
7+
- [#450](https://github.com/mdx-js/mdx-analyzer/pull/450) [`9767738`](https://github.com/mdx-js/mdx-analyzer/commit/976773851618fcc2018671d56d7902216873ceb6) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Solve a regression caused by TypeScript 5.5
8+
9+
- [#446](https://github.com/mdx-js/mdx-analyzer/pull/446) [`044776e`](https://github.com/mdx-js/mdx-analyzer/commit/044776e8e156cb5fd42e4f016215b9eefec894bd) Thanks [@johnsoncodehk](https://github.com/johnsoncodehk)! - Update to Volar 2.3.
10+
11+
- Updated dependencies [[`9767738`](https://github.com/mdx-js/mdx-analyzer/commit/976773851618fcc2018671d56d7902216873ceb6), [`044776e`](https://github.com/mdx-js/mdx-analyzer/commit/044776e8e156cb5fd42e4f016215b9eefec894bd)]:
12+
- @mdx-js/language-service@0.5.7
13+
314
## 0.0.3
415

516
### Patch Changes

packages/typescript-plugin/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mdx-js/typescript-plugin",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"type": "module",
55
"description": "A TypeScript plugin to support language features in MDX files",
66
"repository": {
@@ -29,7 +29,7 @@
2929
"test": "npm pack && npm run test-api"
3030
},
3131
"dependencies": {
32-
"@mdx-js/language-service": "0.5.6",
32+
"@mdx-js/language-service": "0.5.7",
3333
"@volar/typescript": "~2.3.0",
3434
"load-plugin": "^6.0.0",
3535
"remark-frontmatter": "^5.0.0",

packages/vscode-mdx/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.8.9
4+
5+
### Patch Changes
6+
7+
- [#450](https://github.com/mdx-js/mdx-analyzer/pull/450) [`9767738`](https://github.com/mdx-js/mdx-analyzer/commit/976773851618fcc2018671d56d7902216873ceb6) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Solve a regression caused by TypeScript 5.5
8+
9+
- [#446](https://github.com/mdx-js/mdx-analyzer/pull/446) [`044776e`](https://github.com/mdx-js/mdx-analyzer/commit/044776e8e156cb5fd42e4f016215b9eefec894bd) Thanks [@johnsoncodehk](https://github.com/johnsoncodehk)! - Update to Volar 2.3.
10+
311
## 1.8.8
412

513
### Patch Changes

packages/vscode-mdx/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-mdx",
3-
"version": "1.8.8",
3+
"version": "1.8.9",
44
"displayName": "MDX",
55
"description": "Language support for MDX",
66
"categories": [

0 commit comments

Comments
 (0)