Skip to content

Commit a983f21

Browse files
committed
newsfiles
1 parent 988688c commit a983f21

File tree

5 files changed

+39
-0
lines changed

5 files changed

+39
-0
lines changed

changelog.d/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
!.gitignore

changelog.d/5.bugfix

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix incorrect typing annotation for `decode_signing_key_base64`.

changelog.d/6.bugfix

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Reinstate `decode_verify_key_base64` function which was erroneously removed in 1.1.0.

changelog.d/7.misc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Use `setuptools_scm` for the version number.

pyproject.toml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
[tool.towncrier]
2+
package = "signedjson"
3+
filename = "CHANGELOG.md"
4+
directory = "changelog.d"
5+
issue_format = "[\\#{issue}](https://github.com/matrix-org/python-signedjson/issues/{issue})"
6+
7+
[[tool.towncrier.type]]
8+
directory = "feature"
9+
name = "Features"
10+
showcontent = true
11+
12+
[[tool.towncrier.type]]
13+
directory = "bugfix"
14+
name = "Bugfixes"
15+
showcontent = true
16+
17+
[[tool.towncrier.type]]
18+
directory = "docker"
19+
name = "Updates to the Docker image"
20+
showcontent = true
21+
22+
[[tool.towncrier.type]]
23+
directory = "doc"
24+
name = "Improved Documentation"
25+
showcontent = true
26+
27+
[[tool.towncrier.type]]
28+
directory = "removal"
29+
name = "Deprecations and Removals"
30+
showcontent = true
31+
32+
[[tool.towncrier.type]]
33+
directory = "misc"
34+
name = "Internal Changes"
35+
showcontent = true

0 commit comments

Comments
 (0)