mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
Add breaking change type to newsfragment (#61)
* Add breaking change type to newsfragment * Move breaking-change -> breaking
This commit is contained in:
@ -15,6 +15,7 @@ Each file should be named like `<ISSUE>.<TYPE>.rst`, where
|
||||
* `internal`
|
||||
* `removal`
|
||||
* `misc`
|
||||
* `breaking`
|
||||
|
||||
So for example: `123.feature.rst`, `456.bugfix.rst`
|
||||
|
||||
|
||||
@ -8,6 +8,7 @@ import pathlib
|
||||
import sys
|
||||
|
||||
ALLOWED_EXTENSIONS = {
|
||||
'.breaking.rst',
|
||||
'.bugfix.rst',
|
||||
'.doc.rst',
|
||||
'.feature.rst',
|
||||
|
||||
@ -41,3 +41,8 @@ showcontent = true
|
||||
directory = "misc"
|
||||
name = "Miscellaneous changes"
|
||||
showcontent = false
|
||||
|
||||
[[tool.towncrier.type]]
|
||||
directory = "breaking"
|
||||
name = "Breaking changes"
|
||||
showcontent = true
|
||||
|
||||
Reference in New Issue
Block a user