Compare commits

...

3 Commits

2 changed files with 14 additions and 6 deletions

View File

@ -4,4 +4,11 @@ An approach to having kids use a Kodi media center instance: manage session use
## Valid Conventional Commits scopes ## Valid Conventional Commits scopes
* `meta`: Affects the Git project's structure such as for example a `pyproject.toml` change, adding a new directory or changing how a news fragment file is formatted * `meta`: Affects the Git project's structure such as for example a `pyproject.toml` change, adding a new directory or changing how a news fragment file is formatted
* Examples:
```
refactor(meta): Move pytest config into 'pyproject.toml'
```
```
build(meta): Set custom towncrier news topics
```

View File

@ -14,7 +14,7 @@
# via requests # via requests
"requests==2.27.1", "requests==2.27.1",
# via -r requirements.in # via -r requirements.in
"urllib3==1.26.9", "urllib3==1.26.9"
# via requests # via requests
] ]
@ -52,14 +52,14 @@
# via # via
# pytest # pytest
# towncrier # towncrier
"towncrier==21.9.0", "towncrier==21.9.0"
# via -r requirements.in # via -r requirements.in
] ]
[build-system] [build-system]
requires = [ requires = [
"setuptools == 58.0.4", "setuptools==58.0.4",
"wheel == 0.37.1" "wheel==0.37.1"
] ]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
@ -77,7 +77,8 @@
{ name = "Bug fixes", directory = "fix", showcontent = true }, { name = "Bug fixes", directory = "fix", showcontent = true },
{ name = "Project structure", directory = "build", showcontent = true }, { name = "Project structure", directory = "build", showcontent = true },
{ name = "Refactor", directory = "refactor", showcontent = true }, { name = "Refactor", directory = "refactor", showcontent = true },
{ name = "Test", directory = "test", showcontent = true } { name = "Test", directory = "test", showcontent = true },
{ name = "Documentation", directory = "docs", showcontent = true }
] ]
# New format is in the works, not yet part of towncrier 21.9.0 # New format is in the works, not yet part of towncrier 21.9.0