Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
svfusion
funkwhale
Commits
726bbf30
Verified
Commit
726bbf30
authored
Feb 27, 2018
by
Eliot Berriot
Browse files
Now use towncrier for changelog management
parent
1304f3e3
Changes
7
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
726bbf30
Changelog
=========
0.6 (Unreleased)
----------------
- Always use username in sidebar (#89)
- Fixed broken import because of missing transaction
.. towncrier
0.5.2 (2018-02-26)
...
...
changes/__init__.py
0 → 100644
View file @
726bbf30
changes/changelog.d/89.bugfix
0 → 100644
View file @
726bbf30
Always use username in sidebar (#89)
changes/changelog.d/changelog.misc
0 → 100644
View file @
726bbf30
Switched to towncrier for changelog management and compilation
changes/changelog.d/transaction-import.bugfix
0 → 100644
View file @
726bbf30
Fixed broken import because of missing transaction
changes/template.rst
0 → 100644
View file @
726bbf30
{% for section, _ in sections.items() %}
{% if sections[section] %}
{% for category, val in definitions.items() if category in sections[section]%}
{{ definitions[category]['name'] }}:
{% if definitions[category]['showcontent'] %}
{% for text in sections[section][category].keys()|sort() %}
- {{ text }}
{% endfor %}
{% else %}
- {{ sections[section][category]['']|join(', ') }}
{% endif %}
{% if sections[section][category]|length == 0 %}
No significant changes.
{% else %}
{% endif %}
{% endfor %}
{% else %}
No significant changes.
{% endif %}
{% endfor %}
pyproject.toml
0 → 100644
View file @
726bbf30
[tool.towncrier]
package
=
"changes"
package_dir
=
""
filename
=
"CHANGELOG"
directory
=
"changes/changelog.d/"
start_string
=
".. towncrier
\n
"
template
=
"changes/template.rst"
issue_format
=
""
title_format
=
"{version} (unreleased)"
underlines
=
"-"
[[tool.towncrier.section]]
path
=
""
[[tool.towncrier.type]]
directory
=
"feature"
name
=
"Features"
showcontent
=
true
[[tool.towncrier.type]]
directory
=
"bugfix"
name
=
"Bugfixes"
showcontent
=
true
[[tool.towncrier.type]]
directory
=
"doc"
name
=
"Documentation"
showcontent
=
true
[[tool.towncrier.type]]
directory
=
"misc"
name
=
"Other"
showcontent
=
true
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment