mirror of
https://github.com/apricote/releaser-pleaser.git
synced 2026-01-13 13:21:00 +00:00
42 lines
718 B
Text
42 lines
718 B
Text
|
|
<!-- section-start changelog -->
|
||
|
|
## v1.0.0
|
||
|
|
<!-- section-end changelog -->
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
<details>
|
||
|
|
<summary><h4>PR by <a href="https://github.com/apricote/releaser-pleaser">releaser-pleaser</a> 🤖</h4></summary>
|
||
|
|
|
||
|
|
If you want to modify the proposed release, add you overrides here. You can learn more about the options in the docs.
|
||
|
|
|
||
|
|
## Release Notes
|
||
|
|
|
||
|
|
### Prefix / Start
|
||
|
|
|
||
|
|
This will be added to the start of the release notes.
|
||
|
|
|
||
|
|
~~~~rp-prefix
|
||
|
|
## Foo
|
||
|
|
|
||
|
|
- Cool thing
|
||
|
|
|
||
|
|
```go
|
||
|
|
// Some code example
|
||
|
|
func IsPositive(number int) error {
|
||
|
|
if number < 0 {
|
||
|
|
return fmt.Errorf("number %d is negative", number)
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
```
|
||
|
|
~~~~
|
||
|
|
|
||
|
|
### Suffix / End
|
||
|
|
|
||
|
|
This will be added to the end of the release notes.
|
||
|
|
|
||
|
|
~~~~rp-suffix
|
||
|
|
~~~~
|
||
|
|
|
||
|
|
</details>
|