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.
2 parents 7b86488 + 52ee8c4 commit 44aaf9dCopy full SHA for 44aaf9d
jupyter_releaser/changelog.py
@@ -123,6 +123,10 @@ def get_version_entry(
123
124
entry = "\n".join(entry).strip()
125
126
+ # Remove empty documentation entry if only automated changelogs were there
127
+ if "# Documentation improvements\n\n" in entry:
128
+ entry = re.sub(r"#+ Documentation improvements\n\n", "", entry)
129
+
130
# Replace "*" unordered list marker with "-" since this is what
131
# Prettier uses
132
# TODO: remove after github_activity 0.1.4+ is available
0 commit comments