From f6fcbe793c70852aa96b9388a9cbf354fd2b80da Mon Sep 17 00:00:00 2001
From: Dream Hunter
Date: Wed, 3 Jun 2026 22:14:44 +0800
Subject: [PATCH] feat: upgrade version to v1.10.0 (#1051)
- Update version number to 1.10.0 in all package.json files
- Add v1.10.0 placeholder in CHANGELOG.md
---
.claude/skills/cf-temp-mail-version-upgrade/SKILL.md | 11 ++++++++++-
CHANGELOG.md | 10 +++++++++-
CHANGELOG_EN.md | 10 +++++++++-
frontend/package.json | 2 +-
pages/package.json | 2 +-
vitepress-docs/package.json | 2 +-
worker/package.json | 2 +-
worker/src/constants.ts | 2 +-
8 files changed, 33 insertions(+), 8 deletions(-)
diff --git a/.claude/skills/cf-temp-mail-version-upgrade/SKILL.md b/.claude/skills/cf-temp-mail-version-upgrade/SKILL.md
index d7ef7918..9adc6cb6 100644
--- a/.claude/skills/cf-temp-mail-version-upgrade/SKILL.md
+++ b/.claude/skills/cf-temp-mail-version-upgrade/SKILL.md
@@ -28,6 +28,7 @@ Upgrade the version number of the cloudflare_temp_email project.
4. Update the `VERSION` constant in `worker/src/constants.ts`.
5. Insert a new version placeholder at the top of `CHANGELOG.md`.
6. Insert a new version placeholder at the top of `CHANGELOG_EN.md`.
+7. Rename the previous version heading in both changelogs from `## v{OLD_VERSION}(main)` to `## v{OLD_VERSION}` so only the new active development version keeps `(main)`.
## CHANGELOG format
@@ -44,7 +45,14 @@ In `CHANGELOG.md`, insert before the existing `## v{OLD_VERSION}(main)` line (i.
```
-`CHANGELOG_EN.md` uses the same format.
+After inserting the new placeholder, update the old heading:
+
+```diff
+-## v{OLD_VERSION}(main)
++## v{OLD_VERSION}
+```
+
+`CHANGELOG_EN.md` uses the same format and must receive the same old-heading update.
## Commit message format
@@ -53,4 +61,5 @@ feat: upgrade version to v{VERSION}
- Update version number to {VERSION} in all package.json files
- Add v{VERSION} placeholder in CHANGELOG.md
+- Move (main) marker from v{OLD_VERSION} to v{VERSION}
```
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 496474ea..27a0f3e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,7 +6,15 @@
English
-## v1.9.0(main)
+## v1.10.0(main)
+
+### Features
+
+### Bug Fixes
+
+### Improvements
+
+## v1.9.0
### Features
diff --git a/CHANGELOG_EN.md b/CHANGELOG_EN.md
index 4aea67e2..37e8190d 100644
--- a/CHANGELOG_EN.md
+++ b/CHANGELOG_EN.md
@@ -6,7 +6,15 @@
English
-## v1.9.0(main)
+## v1.10.0(main)
+
+### Features
+
+### Bug Fixes
+
+### Improvements
+
+## v1.9.0
### Features
diff --git a/frontend/package.json b/frontend/package.json
index 34b3c383..374aeb7c 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -1,6 +1,6 @@
{
"name": "cloudflare_temp_email",
- "version": "1.9.0",
+ "version": "1.10.0",
"private": true,
"type": "module",
"scripts": {
diff --git a/pages/package.json b/pages/package.json
index 00a85d11..ddc75eab 100644
--- a/pages/package.json
+++ b/pages/package.json
@@ -1,6 +1,6 @@
{
"name": "temp-email-pages",
- "version": "1.9.0",
+ "version": "1.10.0",
"description": "",
"main": "index.js",
"scripts": {
diff --git a/vitepress-docs/package.json b/vitepress-docs/package.json
index 806d8816..0e7a7b50 100644
--- a/vitepress-docs/package.json
+++ b/vitepress-docs/package.json
@@ -1,7 +1,7 @@
{
"name": "temp-mail-docs",
"private": true,
- "version": "1.9.0",
+ "version": "1.10.0",
"type": "module",
"devDependencies": {
"@types/node": "^25.9.1",
diff --git a/worker/package.json b/worker/package.json
index ed9fb43d..60cd7f76 100644
--- a/worker/package.json
+++ b/worker/package.json
@@ -1,6 +1,6 @@
{
"name": "cloudflare_temp_email",
- "version": "1.9.0",
+ "version": "1.10.0",
"private": true,
"type": "module",
"scripts": {
diff --git a/worker/src/constants.ts b/worker/src/constants.ts
index e8b0951e..4dd53d6d 100644
--- a/worker/src/constants.ts
+++ b/worker/src/constants.ts
@@ -1,5 +1,5 @@
export const CONSTANTS = {
- VERSION: 'v' + '1.9.0',
+ VERSION: 'v' + '1.10.0',
// DB Version
DB_VERSION_KEY: 'db_version',