We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3858add commit 7b8d2d9Copy full SHA for 7b8d2d9
src/semantic_release/commit_parser/emoji.py
@@ -18,7 +18,7 @@
18
ParsedMessageResult,
19
ParseResult,
20
)
21
-from semantic_release.commit_parser.util import parse_paragraphs
+from semantic_release.commit_parser.util import sort_numerically, parse_paragraphs
22
from semantic_release.enums import LevelBump
23
from semantic_release.errors import InvalidParserOptions
24
@@ -186,7 +186,7 @@ def commit_body_components_separator(
186
predicate.split(","),
187
188
189
- accumulator["linked_issues"] = sorted(
+ accumulator["linked_issues"] = sort_numerically(
190
set(accumulator["linked_issues"]).union(new_issue_refs)
191
192
# TODO: breaking change v10, removes resolution footers from descriptions
0 commit comments