We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bfd46f commit 846b276Copy full SHA for 846b276
scripts/create-single-release.ts
@@ -255,15 +255,12 @@ function categorizeCommit(message: string): 'features' | 'fixes' | 'improvements
255
msgLower.includes('enhance') ||
256
msgLower.includes('upgrade') ||
257
msgLower.includes('optimization') ||
258
- msgLower.includes('add')
+ msgLower.includes('add') ||
259
+ msgLower.includes('update')
260
) {
261
return 'improvements'
262
}
263
- if (msgLower.includes('update')) {
264
- return 'improvements'
265
- }
266
-
267
return 'other'
268
269
0 commit comments