diff --git a/CHANGELOG.md b/CHANGELOG.md index 2960742e..d84dc489 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# [1.0.0-rc.141](https://github.com/pengzhanbo/vuepress-theme-plume/compare/v1.0.0-rc.140...v1.0.0-rc.141) (2025-04-15) + + +### Features + +* **plugin-md-power:** improve async import for ssr ([6bbfc03](https://github.com/pengzhanbo/vuepress-theme-plume/commit/6bbfc031fbf0b311bd0c55c3684b1321ea478831)) +* **theme:** add `doc-meta-before` and `doc-meta-after` slots ([#554](https://github.com/pengzhanbo/vuepress-theme-plume/issues/554)) ([97f0460](https://github.com/pengzhanbo/vuepress-theme-plume/commit/97f046015c236bd37c9ffa49456a0e177b07c5b2)) +* **theme:** add `target/rel` props support for `LinkCard` ([#556](https://github.com/pengzhanbo/vuepress-theme-plume/issues/556)) ([a0de3c6](https://github.com/pengzhanbo/vuepress-theme-plume/commit/a0de3c660a60dd24bd4f6d3663e144a4a3c1aa39)) +* **theme:** enhance repo card display and add star/fork conversion ([cbc728b](https://github.com/pengzhanbo/vuepress-theme-plume/commit/cbc728b249dc1079b513525c23c1c1af751f826a)) +* **theme:** improve page scroll behavior ([#557](https://github.com/pengzhanbo/vuepress-theme-plume/issues/557)) ([eef2220](https://github.com/pengzhanbo/vuepress-theme-plume/commit/eef222086f4fb7db53cad7a321ec310ab5e2f7ee)) +* **theme:** refactor `VPCardMasonry` for improved layout ([8111351](https://github.com/pengzhanbo/vuepress-theme-plume/commit/8111351224b83471cf09698531ee48d799945145)) +* **theme:** update deps to latest and support vuepress rc.21 ([79d5312](https://github.com/pengzhanbo/vuepress-theme-plume/commit/79d5312cb81087c6a9c7eee95edfd97b8a2a0088)) + + + # [1.0.0-rc.140](https://github.com/pengzhanbo/vuepress-theme-plume/compare/v1.0.0-rc.139...v1.0.0-rc.140) (2025-04-07) diff --git a/cli/package.json b/cli/package.json index 14265e82..3aee5077 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,7 +1,7 @@ { "name": "create-vuepress-theme-plume", "type": "module", - "version": "1.0.0-rc.140", + "version": "1.0.0-rc.141", "description": "The cli for create vuepress-theme-plume's project", "author": "pengzhanbo (https://github.com/pengzhanbo/)", "license": "MIT", diff --git a/package.json b/package.json index 13334f2b..f753640c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vuepress-theme-plume-monorepo", "type": "module", - "version": "1.0.0-rc.140", + "version": "1.0.0-rc.141", "private": true, "packageManager": "pnpm@10.8.1", "author": "pengzhanbo (https://github.com/pengzhanbo/)", diff --git a/plugins/plugin-fonts/package.json b/plugins/plugin-fonts/package.json index 6a6caef0..861c1d92 100644 --- a/plugins/plugin-fonts/package.json +++ b/plugins/plugin-fonts/package.json @@ -1,7 +1,7 @@ { "name": "@vuepress-plume/plugin-fonts", "type": "module", - "version": "1.0.0-rc.140", + "version": "1.0.0-rc.141", "description": "The Plugin for VuePress 2 - fonts", "author": "pengzhanbo ", "license": "MIT", diff --git a/plugins/plugin-md-power/package.json b/plugins/plugin-md-power/package.json index c3536ccd..5b848f00 100644 --- a/plugins/plugin-md-power/package.json +++ b/plugins/plugin-md-power/package.json @@ -1,7 +1,7 @@ { "name": "vuepress-plugin-md-power", "type": "module", - "version": "1.0.0-rc.140", + "version": "1.0.0-rc.141", "description": "The Plugin for VuePress 2 - markdown power", "author": "pengzhanbo ", "license": "MIT", diff --git a/plugins/plugin-replace-assets/package.json b/plugins/plugin-replace-assets/package.json index abe52084..92a20279 100644 --- a/plugins/plugin-replace-assets/package.json +++ b/plugins/plugin-replace-assets/package.json @@ -1,7 +1,7 @@ { "name": "vuepress-plugin-replace-assets", "type": "module", - "version": "1.0.0-rc.140", + "version": "1.0.0-rc.141", "description": "The Plugin for VuePress 2 - replace assets url", "author": "pengzhanbo ", "license": "MIT", diff --git a/plugins/plugin-search/package.json b/plugins/plugin-search/package.json index f62a8f79..1651bc46 100644 --- a/plugins/plugin-search/package.json +++ b/plugins/plugin-search/package.json @@ -1,7 +1,7 @@ { "name": "@vuepress-plume/plugin-search", "type": "module", - "version": "1.0.0-rc.140", + "version": "1.0.0-rc.141", "description": "The Plugin for VuePress 2 - local search", "author": "pengzhanbo ", "license": "MIT", diff --git a/theme/package.json b/theme/package.json index e0ea86f3..8e52e44d 100644 --- a/theme/package.json +++ b/theme/package.json @@ -1,7 +1,7 @@ { "name": "vuepress-theme-plume", "type": "module", - "version": "1.0.0-rc.140", + "version": "1.0.0-rc.141", "description": "A Blog&Document Theme for VuePress 2.0", "author": "pengzhanbo (https://github.com/pengzhanbo/)", "license": "MIT",