mirror of
https://github.com/apricote/releaser-pleaser.git
synced 2026-01-13 13:21:00 +00:00
20 lines
241 B
Text
20 lines
241 B
Text
|
|
## [1.0.0](https://example.com/1.0.0)
|
||
|
|
|
||
|
|
## 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
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
### Bug Fixes
|
||
|
|
|
||
|
|
- Foobar!
|