Skip to content

Commit 6bdadb9

Browse files
committed
build: publish v2.0.0-rc.1
1 parent f096adc commit 6bdadb9

File tree

12 files changed

+45
-11
lines changed

12 files changed

+45
-11
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
# [2.0.0-rc.1](https://github.com/vuepress/core/compare/v2.0.0-rc.0...v2.0.0-rc.1) (2024-01-24)
2+
3+
4+
### Bug Fixes
5+
6+
* **bundler-vite:** serve assets with absolute path in dev server correctly (close [#1442](https://github.com/vuepress/core/issues/1442)) ([d0b4062](https://github.com/vuepress/core/commit/d0b4062d1975403f85504958bd9e87d9f35fb88e))
7+
* **client:** avoid updating existing head tags (close [#1268](https://github.com/vuepress/core/issues/1268)) ([#1314](https://github.com/vuepress/core/issues/1314)) ([bfbab28](https://github.com/vuepress/core/commit/bfbab2803ec090f80a287484a037b1f6e4a9827b))
8+
* **client:** merge locales head correctly ([2fe35bb](https://github.com/vuepress/core/commit/2fe35bb3a358b59d2b14b4bcae7eb644768e80ba))
9+
* **markdown:** use non-greedy matching when parsing attributes [#1469](https://github.com/vuepress/core/issues/1469) ([91d8e3d](https://github.com/vuepress/core/commit/91d8e3d91962a8c06b648bdadbe239be113d5d42))
10+
11+
12+
### Features
13+
14+
* bump to vue 3.4 ([7f192ea](https://github.com/vuepress/core/commit/7f192ead367c59f811210a22c98bd4a6138d749c))
15+
* **cli:** update config file build target to node18 ([66d20fc](https://github.com/vuepress/core/commit/66d20fc91d95587212c81f8773a4a78a38a95dc3))
16+
* **cli:** update info command to include more binaries and remove ecosystem packages ([84b5c80](https://github.com/vuepress/core/commit/84b5c80989d59f14aecb6efd3cc5df4ed427a77d))
17+
* **markdown:** add absolutePathPrependBase option for assets plugin ([634af03](https://github.com/vuepress/core/commit/634af031331605d1d28cb7e92734c68842d009e0))
18+
* **markdown:** add title support for code blocks (close [#1277](https://github.com/vuepress/core/issues/1277)) ([#1456](https://github.com/vuepress/core/issues/1456)) ([706a427](https://github.com/vuepress/core/commit/706a42783bf54ccf5a9c1f5db2c615119436969c))
19+
* **markdown:** bump to markdown-it 14 ([5abdcdf](https://github.com/vuepress/core/commit/5abdcdfea433f7986e93cd6e766ce1cc445e9dff))
20+
* **markdown:** update default anchor permalink function (close [#1363](https://github.com/vuepress/core/issues/1363)) ([#1452](https://github.com/vuepress/core/issues/1452)) ([f7d6dde](https://github.com/vuepress/core/commit/f7d6dde7dc0ec461abb2529f72f2446eb6b87c5d))
21+
* **vuepress:** add client-types export ([#1460](https://github.com/vuepress/core/issues/1460)) ([57bb91b](https://github.com/vuepress/core/commit/57bb91b642e71c4fe33d45d9a06b2c9fe0f7b052))
22+
* **vuepress:** add more exports and bin shorthands (close [#1446](https://github.com/vuepress/core/issues/1446)) ([#1449](https://github.com/vuepress/core/issues/1449)) ([3a32e0a](https://github.com/vuepress/core/commit/3a32e0a3278514ee051ef34d9faa2dd9009b1677))
23+
24+
25+
### BREAKING CHANGES
26+
27+
* **vuepress:** `vuepress-vite` and `vuepress-webpack` packages have been removed, and the corresponding commands have been moved to `vuepress` package. With `vuepress` command, you need to install bundler package and set bundler in config file manually. With `vuepress-vite` and `vuepress-webpack` command, you still need to install bundler package, but you can omit bundler option in config file.
28+
29+
Co-authored-by: meteorlxy <[email protected]>
30+
* **markdown:** the default permalink function of markdown-it-anchor has been changed from `ariaHidden` to `headerLink` for better accessibility, which would be a potential breaking change for theme authors
31+
* **markdown:** bump to markdown-it 14
32+
33+
34+
135
# [2.0.0-rc.0](https://github.com/vuepress/core/compare/v2.0.0-beta.68...v2.0.0-rc.0) (2023-11-16)
236

337

e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/e2e",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"private": true,
55
"type": "module",
66
"scripts": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/monorepo",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"private": true,
55
"type": "module",
66
"scripts": {

packages/bundler-vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/bundler-vite",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"description": "Bundler vite package of VuePress",
55
"keywords": [
66
"vuepress-bundler",

packages/bundler-webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/bundler-webpack",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"description": "Bundler webpack package of VuePress",
55
"keywords": [
66
"vuepress-bundler",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/cli",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"description": "CLI package of VuePress",
55
"keywords": [
66
"vuepress",

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/client",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"description": "Client package of VuePress",
55
"keywords": [
66
"vuepress",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/core",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"description": "Core package of VuePress",
55
"keywords": [
66
"vuepress",

packages/markdown/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/markdown",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"description": "Markdown package of VuePress",
55
"keywords": [
66
"vuepress",

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/shared",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"description": "Utils that shared between VuePress node and client",
55
"keywords": [
66
"vuepress",

0 commit comments

Comments
 (0)