Skip to content

Commit d2d48fb

Browse files
committed
build(release): prepare v2.10.2
1 parent 1390a24 commit d2d48fb

6 files changed

Lines changed: 73 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Full release narratives now live in versioned files under `releases/`. This file stays as the index and summary entry point.
44

5+
## [2.10.2] - 2026-05-06
6+
- EN: This patch clarifies Prompt Optimizer and Prompt Garden positioning, adds a bilingual Prompt Garden image workflow tutorial, and fixes optional prompt-asset variable handling. See [Release Notes (EN)](releases/v2.10.2.en.md).
7+
- 中文:本次补丁澄清 Prompt Optimizer 与 Prompt Garden 的产品定位,新增双语 Prompt Garden 图像工作流教程,并修复可选提示词资产变量处理。参见 [版本说明(中文)](releases/v2.10.2.zh-CN.md)
8+
59
## [2.10.1] - 2026-05-04
610
- EN: This patch adds a comprehensive MkDocs documentation site with bilingual support, fixes Pro workspace actions broken by RouterView refactoring, corrects Prompt Garden nav paths, and updates project landing page copy. See [Release Notes (EN)](releases/v2.10.1.en.md).
711
- 中文:本次补丁新增完整的 MkDocs 双语文档站,修复 RouterView 重构导致的 Pro 工作区操作失效,修正 Prompt Garden 导航路径,并更新项目落地页文案。参见 [版本说明(中文)](releases/v2.10.1.zh-CN.md)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prompt-optimizer",
3-
"version": "2.10.1",
3+
"version": "2.10.2",
44
"private": true,
55
"packageManager": "pnpm@10.6.1",
66
"engines": {

packages/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prompt-optimizer/desktop",
3-
"version": "2.10.1",
3+
"version": "2.10.2",
44
"description": "Desktop application for Prompt Optimizer",
55
"main": "main.js",
66
"repository": {

packages/extension/public/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"default_locale": "zh_CN",
44
"name": "__MSG_extName__",
5-
"version": "2.10.1",
5+
"version": "2.10.2",
66
"description": "__MSG_extDesc__",
77
"icons": {
88
"16": "icons/icon16.png",

releases/v2.10.2.en.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Prompt Optimizer v2.10.2
2+
3+
## Summary
4+
- Clarifies the relationship between Prompt Optimizer, favorites, and Prompt Garden across the public site and MkDocs documentation.
5+
- Adds a bilingual Prompt Garden image-workflow tutorial with concrete screenshots from import through refinement.
6+
- Fixes smart variable generation so optional prompt-asset variables can still be filled and applied correctly.
7+
8+
## Highlights
9+
- Prompt Garden documentation is now easier to follow for image prompt workflows, while the product positioning separates optimization, favorites, and external prompt-library discovery more clearly.
10+
11+
## Product Updates
12+
### Web
13+
- Refreshes the project homepage and documentation navigation so Prompt Optimizer remains the primary workspace product and Prompt Garden is presented as an external prompt-library source.
14+
- Adds the bilingual `image-prompt-garden-nb151` tutorial with screenshots covering Prompt Garden discovery, import-code handoff, smart variable fill, and final image comparison.
15+
### Core/Infra
16+
- Keeps MkDocs English, Chinese, and development navigation aligned with the new Prompt Garden image tutorial.
17+
18+
## Fixes
19+
- Optional prompt-asset variables are now preserved through smart variable generation and external workspace application instead of being skipped by required-variable-only handling.
20+
21+
## Breaking Changes / Upgrade Notes
22+
- None.
23+
24+
## Developer Notes
25+
- The release range is `v2.10.1..920123df`, intentionally ending at the May 6 morning fix commit before later unfinished enhancement work.
26+
- Variable generation and workspace-apply tests now cover optional prompt asset variables.
27+
28+
<!-- Release drafting reference:
29+
- Range: v2.10.1..HEAD
30+
- fix(ui): honor optional prompt asset variables (920123df)
31+
- docs: add prompt garden image workflow tutorial (f96ed83a)
32+
- docs: clarify optimizer and prompt library positioning (55b9acc8)
33+
-->

releases/v2.10.2.zh-CN.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Prompt Optimizer v2.10.2
2+
3+
## 概括
4+
- 澄清官网与 MkDocs 中 Prompt Optimizer、收藏夹、Prompt Garden 之间的产品关系。
5+
- 新增双语 Prompt Garden 图像工作流教程,并配套从导入到优化对比的截图。
6+
- 修复智能变量生成对可选提示词资产变量的处理,确保可选变量也能正确填充并应用。
7+
8+
## 亮点
9+
- Prompt Garden 图像提示词教程更完整,同时产品定位更清晰:Prompt Optimizer 仍是核心工作区,Prompt Garden 作为外部提示词库来源接入。
10+
11+
## 产品更新
12+
### Web
13+
- 更新项目首页与文档导航,将优化工作区、收藏管理、Prompt Garden 外部提示词库发现关系表达得更明确。
14+
- 新增双语 `image-prompt-garden-nb151` 教程,覆盖 Prompt Garden 发现、导入码接入、智能变量填充和最终图像对比。
15+
### Core/Infra
16+
- 同步 MkDocs 英文、中文和开发配置导航,确保新图像教程在各文档入口一致可见。
17+
18+
## 修复
19+
- 智能变量生成和外部工作区应用现在会保留可选提示词资产变量,不再只处理必填变量而跳过可选项。
20+
21+
## 破坏性变更 / 升级说明
22+
- 无。
23+
24+
## 开发者说明
25+
- 本次发布范围是 `v2.10.1..920123df`,刻意停在 5 月 6 日上午的修复提交,不包含后续尚未完成的增强工作。
26+
- 变量生成与工作区应用测试已覆盖可选提示词资产变量。
27+
28+
<!-- Release drafting reference:
29+
- Range: v2.10.1..HEAD
30+
- fix(ui): honor optional prompt asset variables (920123df)
31+
- docs: add prompt garden image workflow tutorial (f96ed83a)
32+
- docs: clarify optimizer and prompt library positioning (55b9acc8)
33+
-->

0 commit comments

Comments
 (0)