Skip to content

Commit

Permalink
Initialize towncrier for CHANGES.rst.
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
mauritsvanrees committed Oct 1, 2018
1 parent 3b87295 commit c553b21
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 14 deletions.
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

18 changes: 5 additions & 13 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
Changelog
=========

1.15.5 (unreleased)
-------------------

Breaking changes:

- *add item here*

New features:

- *add item here*

Bug fixes:
.. You should *NOT* be adding new change log entries to this file.
You should create a file in the news directory instead.
For helpful instructions, please see:
https://github.com/plone/plone.releaser/blob/master/ADD-A-NEWS-ITEM.rst
- *add item here*
.. towncrier release notes start
1.15.4 (2018-09-30)
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ graft docs
graft Products

global-exclude *pyc
include pyproject.toml
recursive-exclude news *
exclude news
1 change: 1 addition & 0 deletions news/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

20 changes: 20 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[tool.towncrier]
filename = "CHANGES.rst"
directory = "news/"
title_format = "{version} ({project_date})"
underlines = ["-", ""]

[[tool.towncrier.type]]
directory = "breaking"
name = "Breaking changes:"
showcontent = true

[[tool.towncrier.type]]
directory = "feature"
name = "New features:"
showcontent = true

[[tool.towncrier.type]]
directory = "bugfix"
name = "Bug fixes:"
showcontent = true

0 comments on commit c553b21

Please sign in to comment.