diff --git a/CHANGELOG.md b/CHANGELOG.md index 25f9b87..7dcbafb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,6 @@ Update SPDX package compatibility to v0.4. This update enables the following: * Updates the algorithm for computing the package verification code to a hopefully correct implementation. * Allows the computation of artifact verification codes, since it is now able to ignore bad symbolic links. -The version of PkgToSoftwareBOM is documented in the Creators field of a generated SBOM. - ## v0.1.8 Resolved [#2](https://github.com/SamuraiAku/PkgToSoftwareBOM.jl/issues/2), Include artifacts in the SBOM diff --git a/src/PkgToSoftwareBOM.jl b/src/PkgToSoftwareBOM.jl index 6db26f3..4474132 100644 --- a/src/PkgToSoftwareBOM.jl +++ b/src/PkgToSoftwareBOM.jl @@ -49,6 +49,8 @@ Base.@kwdef struct spdxPackageData artifactsinsbom::Set{String}= Set{String}() end +# TODO: When abandoning julia 1.8 compatibility, update the default Creator below to include the package version +# using the function pkgversion(m::Module) Base.@kwdef struct spdxCreationData TargetPlatform::Platform= HostPlatform() Name::String= "Julia Environment"