diff --git a/CHANGELOG.md b/CHANGELOG.md index fb8624e2..64d164a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +# [1.0.0-rc.147](https://github.com/pengzhanbo/vuepress-theme-plume/compare/v1.0.0-rc.146...v1.0.0-rc.147) (2025-05-12) + + +### Bug Fixes + +* **plugin-md-power:** incorrect collapsed lines in code-tree, close [#587](https://github.com/pengzhanbo/vuepress-theme-plume/issues/587) ([#588](https://github.com/pengzhanbo/vuepress-theme-plume/issues/588)) ([9fef665](https://github.com/pengzhanbo/vuepress-theme-plume/commit/9fef6654ae31af17db603e90ec26d7f4712dcd73)) +* **theme:** fix git-plugin execute error when `git: false` ([#591](https://github.com/pengzhanbo/vuepress-theme-plume/issues/591)) ([2c9006c](https://github.com/pengzhanbo/vuepress-theme-plume/commit/2c9006caf7d6509276cdb11b993d43cd34125bc5)) +* **theme:** improve link handling and href binding logic ([f9276fd](https://github.com/pengzhanbo/vuepress-theme-plume/commit/f9276fdb7547c5e504ddcd7660862f44e70b8044)) +* **theme:** simplify icon rendering ([bd0e940](https://github.com/pengzhanbo/vuepress-theme-plume/commit/bd0e9404da5a9afdfda62f1af06f44372d564932)) +* **theme:** yaml parsing error caused by special chars ([#586](https://github.com/pengzhanbo/vuepress-theme-plume/issues/586)) ([61ca08c](https://github.com/pengzhanbo/vuepress-theme-plume/commit/61ca08c8b4c60c6fd38c534a18953de9f6e6920c)) + + +### Features + +* **plugin-md-power:** add timeout to `image-size` ([#592](https://github.com/pengzhanbo/vuepress-theme-plume/issues/592)) ([79ab31d](https://github.com/pengzhanbo/vuepress-theme-plume/commit/79ab31d0f2409ab3031518db8126f8c98563a003)) + + +### Performance Improvements + +* update deps to latest ([c4da089](https://github.com/pengzhanbo/vuepress-theme-plume/commit/c4da089745adf2bfbc42b8b2182ce7a206351df1)) + + + # [1.0.0-rc.146](https://github.com/pengzhanbo/vuepress-theme-plume/compare/v1.0.0-rc.145...v1.0.0-rc.146) (2025-05-06) diff --git a/cli/package.json b/cli/package.json index c8f291ad..0a7887dc 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.146", + "version": "1.0.0-rc.147", "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 b9f1c08e..a1424a4a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vuepress-theme-plume-monorepo", "type": "module", - "version": "1.0.0-rc.146", + "version": "1.0.0-rc.147", "private": true, "packageManager": "pnpm@10.10.0", "author": "pengzhanbo (https://github.com/pengzhanbo/)", diff --git a/plugins/plugin-fonts/package.json b/plugins/plugin-fonts/package.json index 2c7b01cb..504fa0ee 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.146", + "version": "1.0.0-rc.147", "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 9d72bcfa..9887a3e0 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.146", + "version": "1.0.0-rc.147", "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 489d096c..bcab921e 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.146", + "version": "1.0.0-rc.147", "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 f18b4d6a..62c4e114 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.146", + "version": "1.0.0-rc.147", "description": "The Plugin for VuePress 2 - local search", "author": "pengzhanbo ", "license": "MIT", diff --git a/theme/package.json b/theme/package.json index 96b5fcb0..ca077b2c 100644 --- a/theme/package.json +++ b/theme/package.json @@ -1,7 +1,7 @@ { "name": "vuepress-theme-plume", "type": "module", - "version": "1.0.0-rc.146", + "version": "1.0.0-rc.147", "description": "A Blog&Document Theme for VuePress 2.0", "author": "pengzhanbo (https://github.com/pengzhanbo/)", "license": "MIT",