Fix Changed entries considered as Added in changelog tool
This commit is contained in:
parent
b3a365f9ca
commit
e36e042093
1 changed files with 2 additions and 2 deletions
|
|
@ -87,7 +87,7 @@ impl Changelog {
|
|||
|
||||
let target = match category {
|
||||
Category::Added => &mut changelog.added,
|
||||
Category::Changed => &mut changelog.added,
|
||||
Category::Changed => &mut changelog.changed,
|
||||
Category::Fixed => &mut changelog.fixed,
|
||||
Category::Removed => &mut changelog.removed,
|
||||
};
|
||||
|
|
@ -150,7 +150,7 @@ impl Changelog {
|
|||
|
||||
let target = match entry.category {
|
||||
Category::Added => &mut self.added,
|
||||
Category::Changed => &mut self.added,
|
||||
Category::Changed => &mut self.changed,
|
||||
Category::Fixed => &mut self.fixed,
|
||||
Category::Removed => &mut self.removed,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue