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
This commit is contained in:
Dream Hunter
2026-06-03 22:14:44 +08:00
committed by GitHub
parent 05a8ebb590
commit f6fcbe793c
8 changed files with 33 additions and 8 deletions

View File

@@ -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}
```

View File

@@ -6,7 +6,15 @@
<a href="CHANGELOG_EN.md">English</a>
</p>
## v1.9.0(main)
## v1.10.0(main)
### Features
### Bug Fixes
### Improvements
## v1.9.0
### Features

View File

@@ -6,7 +6,15 @@
<a href="CHANGELOG_EN.md">English</a>
</p>
## v1.9.0(main)
## v1.10.0(main)
### Features
### Bug Fixes
### Improvements
## v1.9.0
### Features

View File

@@ -1,6 +1,6 @@
{
"name": "cloudflare_temp_email",
"version": "1.9.0",
"version": "1.10.0",
"private": true,
"type": "module",
"scripts": {

View File

@@ -1,6 +1,6 @@
{
"name": "temp-email-pages",
"version": "1.9.0",
"version": "1.10.0",
"description": "",
"main": "index.js",
"scripts": {

View File

@@ -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",

View File

@@ -1,6 +1,6 @@
{
"name": "cloudflare_temp_email",
"version": "1.9.0",
"version": "1.10.0",
"private": true,
"type": "module",
"scripts": {

View File

@@ -1,5 +1,5 @@
export const CONSTANTS = {
VERSION: 'v' + '1.9.0',
VERSION: 'v' + '1.10.0',
// DB Version
DB_VERSION_KEY: 'db_version',