Initialize towncrier

[ci-skip]
This commit is contained in:
Gil Forcada 2019-02-08 13:36:09 +01:00
parent 316d32a6f5
commit a00dd22e4d
No known key found for this signature in database
GPG Key ID: 13079EFDB0D6B075
7 changed files with 36 additions and 22 deletions

View File

@ -1,29 +1,12 @@
Changelog
=========
3.1.1 (unreleased)
------------------
Breaking changes:
- *add item here*
New features:
- *add item here*
Bug fixes:
- Do not depend on the ``meta_type`` metadata in the catalog.
[jensens]
- Changed $(window).load with $(document).ready in moderation.js
because in some version of FF and IE doesn't work.
[eikichi18]
- a11y: Added role attribute for portalMessage
[nzambello]
.. 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
.. towncrier release notes start
3.1.0 (2018-10-30)
------------------

View File

@ -1,6 +1,10 @@
include *.rst
include pyproject.toml
graft docs
graft plone
global-exclude *.pyc
recursive-exclude news *
exclude news

0
news/.gitkeep Normal file
View File

3
news/144.bugfix Normal file
View File

@ -0,0 +1,3 @@
Changed $(window).load with $(document).ready in moderation.js
because in some version of FF and IE doesn't work.
[eikichi18]

2
news/145.bugfix Normal file
View File

@ -0,0 +1,2 @@
a11y: Added role attribute for portalMessage
[nzambello]

2
news/146.bugfix Normal file
View File

@ -0,0 +1,2 @@
Do not depend on the ``meta_type`` metadata in the catalog.
[jensens]

20
pyproject.toml Normal file
View File

@ -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