Skip to content

Commit

Permalink
fix issue with missing type field on component
Browse files Browse the repository at this point in the history
  • Loading branch information
Marlon Pina Tojal authored and fnxpt committed Mar 7, 2024
1 parent 8eb8632 commit 3ae0a0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const (
MergeModeSmart
)

var version = "0.0.5"
var version = "0.0.6"

var rootComponent = &cyclonedx.Component{
BOMRef: "root",
Expand Down
3 changes: 2 additions & 1 deletion utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ func NewBOM(rootComponent *cyclonedx.Component) *cyclonedx.BOM {
Tools: &cyclonedx.ToolsChoice{
Components: &[]cyclonedx.Component{
{
Type: "application",
Name: "cyclonedx-merge",
Version: "0.0.5",
Version: "0.0.6",
},
},
},
Expand Down

0 comments on commit 3ae0a0b

Please sign in to comment.