Seed Support #56

Closed
ocnios wants to merge 173 commits from master into build
Showing only changes of commit adb42b2c75 - Show all commits

View file

@ -24,6 +24,14 @@ TEMPLATE = """### Added
* *
* *
### Deprecated
*
*
### Removed
*
*
""" """
@ -96,6 +104,7 @@ class Changelog(object):
output.append('### {}'.format(section)) output.append('### {}'.format(section))
for entry in sections[section]: for entry in sections[section]:
output.append(' * {}'.format(entry)) output.append(' * {}'.format(entry))
output.append("\n")
return output return output
def get_unreleased(self): def get_unreleased(self):
@ -106,7 +115,7 @@ class Changelog(object):
return return
today = datetime.datetime.today() today = datetime.datetime.today()
header = '## [{}] - {}\n'.format(version, today.strftime('%Y-%m-%d')) header = "## [{}] - {}\n\n".format(version, today.strftime('%Y-%m-%d'))
changelog_data = ( changelog_data = (
''.join(self.start) + ''.join(self.start) +