Skip to content

Commit 275ac05

Browse files
committed
build: publish v2.0.0-beta.36
1 parent 788afda commit 275ac05

File tree

56 files changed

+335
-73
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+335
-73
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.36](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.35...v2.0.0-beta.36) (2022-03-01)
7+
8+
9+
### Bug Fixes
10+
11+
* avoid user content to be used as string params (close [#727](https://github.com/vuepress/vuepress-next/issues/727)) ([788afda](https://github.com/vuepress/vuepress-next/commit/788afdab56e4048f61505280113e4a073f418f4f))
12+
* **bundler-webpack:** allow `configureWebpack` option to return void ([#662](https://github.com/vuepress/vuepress-next/issues/662)) ([4488cb3](https://github.com/vuepress/vuepress-next/commit/4488cb31d01cf9a198124631f5e3296d1d0f12ab))
13+
* **theme-default:** fix title style when no content in custom container (close [#648](https://github.com/vuepress/vuepress-next/issues/648)) ([#657](https://github.com/vuepress/vuepress-next/issues/657)) ([73d297f](https://github.com/vuepress/vuepress-next/commit/73d297f321750de098c22c8c774dbe934475ddcb))
14+
* use function to pass a single default slot in render function (close [#716](https://github.com/vuepress/vuepress-next/issues/716)) ([4550161](https://github.com/vuepress/vuepress-next/commit/455016192955fb6af74821baf52d3c2c1e4d42c9))
15+
16+
17+
### Features
18+
19+
* **cli:** watch page dependencies on dev ([e6ed487](https://github.com/vuepress/vuepress-next/commit/e6ed487c6d7002fdde1034a961853218b0eb4418))
20+
* **markdown:** add aria-hidden for line-numbers ([#731](https://github.com/vuepress/vuepress-next/issues/731)) ([6f5d132](https://github.com/vuepress/vuepress-next/commit/6f5d13289dd41dbb55d883ff8bff996e77b6daf9))
21+
22+
23+
24+
25+
626
# [2.0.0-beta.35](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.34...v2.0.0-beta.35) (2022-01-22)
727

828

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"npmClient": "yarn",
33
"useWorkspaces": true,
4-
"version": "2.0.0-beta.35",
4+
"version": "2.0.0-beta.36",
55
"command": {
66
"version": {
77
"allowBranch": "main",

packages/@vuepress/bundler-vite/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.36](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.35...v2.0.0-beta.36) (2022-03-01)
7+
8+
9+
### Bug Fixes
10+
11+
* avoid user content to be used as string params (close [#727](https://github.com/vuepress/vuepress-next/issues/727)) ([788afda](https://github.com/vuepress/vuepress-next/commit/788afdab56e4048f61505280113e4a073f418f4f))
12+
13+
14+
15+
16+
617
# [2.0.0-beta.35](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.34...v2.0.0-beta.35) (2022-01-22)
718

819
**Note:** Version bump only for package @vuepress/bundler-vite

packages/@vuepress/bundler-vite/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/bundler-vite",
3-
"version": "2.0.0-beta.35",
3+
"version": "2.0.0-beta.36",
44
"description": "Bundler vite package of VuePress",
55
"keywords": [
66
"vuepress-bundler",
@@ -32,7 +32,7 @@
3232
"@vue/compiler-sfc": "^3.2.28",
3333
"@vue/server-renderer": "^3.2.28",
3434
"@vuepress/client": "2.0.0-beta.35",
35-
"@vuepress/core": "2.0.0-beta.35",
35+
"@vuepress/core": "2.0.0-beta.36",
3636
"@vuepress/shared": "2.0.0-beta.35",
3737
"@vuepress/utils": "2.0.0-beta.35",
3838
"autoprefixer": "^10.4.2",

packages/@vuepress/bundler-webpack/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.36](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.35...v2.0.0-beta.36) (2022-03-01)
7+
8+
9+
### Bug Fixes
10+
11+
* avoid user content to be used as string params (close [#727](https://github.com/vuepress/vuepress-next/issues/727)) ([788afda](https://github.com/vuepress/vuepress-next/commit/788afdab56e4048f61505280113e4a073f418f4f))
12+
* **bundler-webpack:** allow `configureWebpack` option to return void ([#662](https://github.com/vuepress/vuepress-next/issues/662)) ([4488cb3](https://github.com/vuepress/vuepress-next/commit/4488cb31d01cf9a198124631f5e3296d1d0f12ab))
13+
14+
15+
16+
17+
618
# [2.0.0-beta.35](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.34...v2.0.0-beta.35) (2022-01-22)
719

820
**Note:** Version bump only for package @vuepress/bundler-webpack

packages/@vuepress/bundler-webpack/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/bundler-webpack",
3-
"version": "2.0.0-beta.35",
3+
"version": "2.0.0-beta.36",
44
"description": "Bundler webpack package of VuePress",
55
"keywords": [
66
"vuepress-bundler",
@@ -33,7 +33,7 @@
3333
"@vue/compiler-sfc": "^3.2.28",
3434
"@vue/server-renderer": "^3.2.28",
3535
"@vuepress/client": "2.0.0-beta.35",
36-
"@vuepress/core": "2.0.0-beta.35",
36+
"@vuepress/core": "2.0.0-beta.36",
3737
"@vuepress/shared": "2.0.0-beta.35",
3838
"@vuepress/utils": "2.0.0-beta.35",
3939
"autoprefixer": "^10.4.2",

packages/@vuepress/cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.36](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.35...v2.0.0-beta.36) (2022-03-01)
7+
8+
9+
### Features
10+
11+
* **cli:** watch page dependencies on dev ([e6ed487](https://github.com/vuepress/vuepress-next/commit/e6ed487c6d7002fdde1034a961853218b0eb4418))
12+
13+
14+
15+
16+
617
# [2.0.0-beta.35](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.34...v2.0.0-beta.35) (2022-01-22)
718

819

packages/@vuepress/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/cli",
3-
"version": "2.0.0-beta.35",
3+
"version": "2.0.0-beta.36",
44
"description": "CLI package of VuePress",
55
"keywords": [
66
"vuepress",
@@ -30,7 +30,7 @@
3030
"clean": "rimraf lib *.tsbuildinfo"
3131
},
3232
"dependencies": {
33-
"@vuepress/core": "2.0.0-beta.35",
33+
"@vuepress/core": "2.0.0-beta.36",
3434
"@vuepress/utils": "2.0.0-beta.35",
3535
"cac": "^6.7.12",
3636
"chokidar": "^3.5.3",

packages/@vuepress/core/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.36](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.35...v2.0.0-beta.36) (2022-03-01)
7+
8+
**Note:** Version bump only for package @vuepress/core
9+
10+
11+
12+
13+
614
# [2.0.0-beta.35](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.34...v2.0.0-beta.35) (2022-01-22)
715

816
**Note:** Version bump only for package @vuepress/core

packages/@vuepress/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/core",
3-
"version": "2.0.0-beta.35",
3+
"version": "2.0.0-beta.36",
44
"description": "Core package of VuePress",
55
"keywords": [
66
"vuepress",
@@ -27,7 +27,7 @@
2727
},
2828
"dependencies": {
2929
"@vuepress/client": "2.0.0-beta.35",
30-
"@vuepress/markdown": "2.0.0-beta.35",
30+
"@vuepress/markdown": "2.0.0-beta.36",
3131
"@vuepress/shared": "2.0.0-beta.35",
3232
"@vuepress/utils": "2.0.0-beta.35",
3333
"gray-matter": "^4.0.3",

0 commit comments

Comments
 (0)