Skip to content

Commit

Permalink
v1.89.1 - bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Dec 27, 2023
1 parent 8097380 commit b1b5609
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# History

## v1.89.1 2023 December 27

- Fixed v1.89.0 writing an empty author field when multiple authors were present

## v1.89.0 2023 December 27

- Updated for `projectz` v4.0.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "boundation",
"version": "1.89.0",
"version": "1.89.1",
"license": "Artistic-2.0",
"description": "Automatic scaffolding and upgrading of your JavaScript ecosystem projects using Bevry's best practices",
"homepage": "https://github.com/bevry/boundation",
Expand Down
3 changes: 3 additions & 0 deletions source/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ export function fixBevry(input) {
if (fellows.length === 1) {
return fellows[0].toString({ displayYears: false }) // only one person, no need for the years
}
return fellows
.map((fellow) => fellow.toString({ displayYears: true }))
.join(', ')
}

export function fixBalupton(person) {
Expand Down

0 comments on commit b1b5609

Please sign in to comment.