We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8981a8b commit 8860e71Copy full SHA for 8860e71
tools/azure-sdk-tools/packaging_tools/package_utils.py
@@ -67,7 +67,10 @@ def change_log_generate(
67
# try new changelog tool
68
if prefolder and not is_multiapi:
69
try:
70
- return change_log_new(str(Path(prefolder) / package_name), not (last_stable_release and tag_is_stable))
+ return (
71
+ change_log_new(str(Path(prefolder) / package_name), not (last_stable_release and tag_is_stable)),
72
+ last_version,
73
+ )
74
except Exception as e:
75
_LOGGER.warning(f"Failed to generate changelog with breaking_change_detector: {e}")
76
0 commit comments