1.1
This commit is contained in:
parent
e6ac4303ee
commit
e3d6c42362
8 changed files with 35 additions and 5 deletions
15
CHANGES.md
Normal file
15
CHANGES.md
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
1.1 (2020-06-04)
|
||||||
|
================
|
||||||
|
|
||||||
|
Features
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Add support for Slack notifications. Contributed by @awesome-manuel. ([\#28](https://github.com/matrix-org/rageshake/issues/28))
|
||||||
|
|
||||||
|
|
||||||
|
Internal Changes
|
||||||
|
----------------
|
||||||
|
|
||||||
|
- Update minimum go version to 1.11. ([\#29](https://github.com/matrix-org/rageshake/issues/29), [\#30](https://github.com/matrix-org/rageshake/issues/30))
|
||||||
|
- Replace vendored libraries with `go mod`. ([\#31](https://github.com/matrix-org/rageshake/issues/31))
|
||||||
|
- Add Dockerfile. Contributed by @awesome-manuel. ([\#32](https://github.com/matrix-org/rageshake/issues/32))
|
1
changelog.d/.gitignore
vendored
Normal file
1
changelog.d/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
!.gitignore
|
|
@ -1 +0,0 @@
|
||||||
Add support for Slack notifications. Contributed by @awesome-manuel.
|
|
|
@ -1 +0,0 @@
|
||||||
Update minimum go version to 1.11.
|
|
|
@ -1 +0,0 @@
|
||||||
Update minimum go version to 1.11.
|
|
|
@ -1 +0,0 @@
|
||||||
Replace vendored libraries with `go mod`.
|
|
|
@ -1 +0,0 @@
|
||||||
Add Dockerfile. Contributed by @awesome-manuel.
|
|
19
towncrier.toml
Normal file
19
towncrier.toml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
[tool.towncrier]
|
||||||
|
filename = "CHANGES.md"
|
||||||
|
directory = "changelog.d"
|
||||||
|
issue_format = "[\\#{issue}](https://github.com/matrix-org/rageshake/issues/{issue})"
|
||||||
|
|
||||||
|
[[tool.towncrier.type]]
|
||||||
|
directory = "feature"
|
||||||
|
name = "Features"
|
||||||
|
showcontent = true
|
||||||
|
|
||||||
|
[[tool.towncrier.type]]
|
||||||
|
directory = "bugfix"
|
||||||
|
name = "Bugfixes"
|
||||||
|
showcontent = true
|
||||||
|
|
||||||
|
[[tool.towncrier.type]]
|
||||||
|
directory = "misc"
|
||||||
|
name = "Internal Changes"
|
||||||
|
showcontent = true
|
Reference in a new issue