Skip to content

Commit b9411e2

Browse files
committed
chore: bump version
1 parent 43891b5 commit b9411e2

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

.release-it.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/release-it@17/schema/release-it.json",
3+
"plugins": {
4+
"@release-it/conventional-changelog": {
5+
"preset": {
6+
"name": "angular"
7+
},
8+
"infile": "CHANGELOG.md"
9+
}
10+
}
11+
}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## [2.1.0](https://github.com/aqzhyi/chinese-conv/compare/v2.0.0...v2.1.0) (2024-08-25)
2+
3+
### Bug Fixes
4+
5+
- error handling, if a non-string parameter is unexpectedly passed in, an error message will be logged to the console ([43891b5](https://github.com/aqzhyi/chinese-conv/commit/43891b5028c7048629e1384ba7988e9258205824))
6+
7+
## [2.0.0](https://github.com/Aqzhyi/chinese-conv/compare/v1.1.0...v2.0.0) (2024-08-25)
8+
9+
### Bug Fixes
10+
11+
- retire the old-fashioned build plan from 9 years ago and switch to TypeScript, Bun, and Vitest ([b0548c42](https://github.com/aqzhyi/chinese-conv/commit/b0548c429c2969b0c491617f554c92005dd24943))

bun.lockb

105 KB
Binary file not shown.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "chinese-conv",
33
"description": "簡轉繁,繁轉簡。Conversion between Traditional and Simplified Chinese",
4-
"version": "2.0.0",
4+
"version": "2.1.0",
55
"type": "module",
66
"packageManager": "[email protected]",
77
"main": "dist/index.js",
@@ -18,20 +18,23 @@
1818
"transform"
1919
],
2020
"devDependencies": {
21+
"@release-it/conventional-changelog": "^8.0.1",
2122
"@types/bun": "latest",
2223
"@vitest/coverage-v8": "^2.0.5",
2324
"bun": "^1.1.26",
2425
"del-cli": "^5.1.0",
2526
"prettier": "^3.3.3",
2627
"prettier-plugin-jsdoc": "^1.3.0",
28+
"release-it": "^17.6.0",
2729
"typescript": "^5.5.4",
2830
"vite": "^5.4.2",
2931
"vitest": "^2.0.5"
3032
},
3133
"scripts": {
3234
"dev": "bun run --watch ./src/index.ts --outdir ./dist",
3335
"build": "del ./dist && bun build ./src/index.ts --outdir ./dist",
34-
"test": "vitest run --coverage"
36+
"test": "vitest run --coverage",
37+
"publish": "release-it"
3538
},
3639
"repository": {
3740
"type": "git",

0 commit comments

Comments
 (0)