Skip to content

Commit 5369185

Browse files
chore: Release 5.0.0 [skip ci]
1 parent c906fe1 commit 5369185

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [5.0.0](https://github.com/amannn/action-semantic-pull-request/compare/v4.6.0...v5.0.0) (2022-10-11)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Enum options need to be newline delimited (to allow whitespace within them) (#205)
9+
10+
### Features
11+
12+
* Enum options need to be newline delimited (to allow whitespace within them) ([#205](https://github.com/amannn/action-semantic-pull-request/issues/205)) ([c906fe1](https://github.com/amannn/action-semantic-pull-request/commit/c906fe1e5a4bcc61624931ca94da9672107bd448))
13+
314
## [4.6.0](https://github.com/amannn/action-semantic-pull-request/compare/v4.5.0...v4.6.0) (2022-09-26)
415

516

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35605,7 +35605,7 @@ function wrappy (fn, cb) {
3560535605
/***/ 6308:
3560635606
/***/ ((module) => {
3560735607

35608-
const ENUM_SPLIT_REGEX = /[,\s]\s*/;
35608+
const ENUM_SPLIT_REGEX = /\n/;
3560935609

3561035610
module.exports = {
3561135611
parseEnum(input) {

0 commit comments

Comments
 (0)