Skip to content

Commit

Permalink
Merge pull request #47 from rios0rios0/fix/changelog
Browse files Browse the repository at this point in the history
fix(changelog): added missing CHANGELOG.md sections
  • Loading branch information
rios0rios0 authored Feb 5, 2024
2 parents 68dc420 + 662e580 commit e3fb61f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Exceptions are acceptable depending on the circumstances (critical bug fixes tha

### Fixed

- fixed the issue where some sections are left out in the `CHANGELOG.md` file
- fixed the error where `-` characters are not replaced with `_` in the project names

## [2.12.0] - 2024-01-25
Expand Down
2 changes: 1 addition & 1 deletion cmd/autobump/changelog.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ func updateSection(
// add a blank line between sections
newSection = append(newSection, "")

keys := []string{"Added", "Changed", "Removed"}
keys := []string{"Added", "Changed", "Deprecated", "Removed", "Fixed", "Security"}
for _, key := range keys {
section := sections[key]

Expand Down

0 comments on commit e3fb61f

Please sign in to comment.