Add a changelog directory for room versions (#3504)
This commit is contained in:
parent
d74a43f7cf
commit
92b29cf8e6
3 changed files with 4 additions and 1 deletions
1
changelogs/room_versions/newsfragments/.gitignore
vendored
Normal file
1
changelogs/room_versions/newsfragments/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
!.gitignore
|
|
@ -36,6 +36,7 @@
|
|||
{{ partial "render-api-changes" (dict "title" "Application Service API" "id" "application-service-api" "path" (path.Join $path "application_service")) }}
|
||||
{{ partial "render-api-changes" (dict "title" "Identity Service API" "id" "identity-service-api" "path" (path.Join $path "identity_service")) }}
|
||||
{{ partial "render-api-changes" (dict "title" "Push Gateway API" "id" "push-gateway-api" "path" (path.Join $path "push_gateway")) }}
|
||||
{{ partial "render-api-changes" (dict "title" "Room Versions" "id" "room-versions" "path" (path.Join $path "room_versions")) }}
|
||||
|
||||
{{ define "partials/render-api-changes" }}
|
||||
<h3 id="{{.id}}">{{ .title }}</h3>
|
||||
|
|
|
@ -11,7 +11,8 @@ cd changelogs
|
|||
# Pre-cleanup just in case it wasn't done on the last run
|
||||
rm -f rendered.*
|
||||
|
||||
# Reversed order so the push gateway ends up on the bottom
|
||||
# Reversed order so that room versions ends up on the bottom
|
||||
towncrier --name "Room Versions" --dir "./room_versions" --config "./pyproject.toml" --yes
|
||||
towncrier --name "Push Gateway API" --dir "./push_gateway" --config "./pyproject.toml" --yes
|
||||
towncrier --name "Identity Service API" --dir "./identity_service" --config "./pyproject.toml" --yes
|
||||
towncrier --name "Application Service API" --dir "./application_service" --config "./pyproject.toml" --yes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue