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 7b86488 commit 55f9b92Copy full SHA for 55f9b92
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', '')
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