Skip to content

Commit 1cbc34f

Browse files
bug fixes (#209)
* bug fixes * Resolve review comments * Changed Poetry lock Dev Dependency identification logic. * Updated to 7.0.1 in all the project files
1 parent 48f4192 commit 1cbc34f

File tree

11 files changed

+19
-18
lines changed

11 files changed

+19
-18
lines changed

.github/workflows/compile.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
$sourceFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "*"
9797
$outFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "continuous-clearing"
9898
New-Item -ItemType Directory -Force -Path $outFolder
99-
$fileName = "continuous-clearing-v7.0.0.zip"
99+
$fileName = "continuous-clearing-v7.0.1.zip"
100100
Write-Host "Filename: '$fileName'"
101101
Write-Host "sourceFolder: '$sourceFolder'"
102102
Write-Host "Outfolder: '$outFolder'"
@@ -129,8 +129,8 @@ jobs:
129129
- name: Create Nuget Packages
130130
id: createNupkg
131131
run: |
132-
nuget pack CA.nuspec -Version 7.0.0
133-
Write-Host "::set-output name=nupkg-LicenseClearingTool::continuous-clearing.7.0.0.nupkg"
132+
nuget pack CA.nuspec -Version 7.0.1
133+
Write-Host "::set-output name=nupkg-LicenseClearingTool::continuous-clearing.7.0.1.nupkg"
134134
135135
- name: Archive NuGet Packages
136136
uses: actions/upload-artifact@v4
@@ -164,9 +164,9 @@ jobs:
164164
#if: ${{ false }} # disable for now
165165
run: |
166166
echo "Files in directory:"
167-
docker build . --file Dockerfile --tag ${{ github.repository }}:continuous-clearing-v7.0.0
168-
docker save ${{ github.repository }}:continuous-clearing-v7.0.0 -o continuous-clearing-v7.0.0.tar
169-
echo "::set-output name=docker-LicenseClearingTool::continuous-clearing-v7.0.0.tar"
167+
docker build . --file Dockerfile --tag ${{ github.repository }}:continuous-clearing-v7.0.1
168+
docker save ${{ github.repository }}:continuous-clearing-v7.0.1 -o continuous-clearing-v7.0.1.tar
169+
echo "::set-output name=docker-LicenseClearingTool::continuous-clearing-v7.0.1.tar"
170170
171171
- name: Archive docker image
172172
#if: ${{ false }} # disable for now
@@ -214,8 +214,8 @@ jobs:
214214
env:
215215
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
216216
with:
217-
tag_name: v7.0.0
218-
release_name: Release v7.0.0
217+
tag_name: v7.0.1
218+
release_name: Release v7.0.1
219219
body: |
220220
${{ github.event.head_commit.message }}
221221
draft: true

src/ArtifactoryUploader/LCT.ArtifactoryUploader.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
66
<AssemblyName>ArtifactoryUploader</AssemblyName>
7-
<Version>7.0.0</Version>
7+
<Version>7.0.1</Version>
88
</PropertyGroup>
99

1010
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

src/LCT.APICommunications/LCT.APICommunications.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Library</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
6-
<Version>7.0.0</Version>
6+
<Version>7.0.1</Version>
77
</PropertyGroup>
88

99
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

src/LCT.ArtifactPublisher/LCT.ArtifactPublisher.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<Version>7.0.0</Version>
7+
<Version>7.0.1</Version>
88
</PropertyGroup>
99

1010
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

src/LCT.Common/LCT.Common.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Library</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
6-
<Version>7.0.0</Version>
6+
<Version>7.0.1</Version>
77
</PropertyGroup>
88

99
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

src/LCT.CycloneDxProcessor/LCT.CycloneDxProcessor.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<Version>7.0.0</Version>
5+
<Version>7.0.1</Version>
66
</PropertyGroup>
77

88
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

src/LCT.Facade/LCT.Facade.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<Version>7.0.0</Version>
5+
<Version>7.0.1</Version>
66
</PropertyGroup>
77

88
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

src/LCT.PackageIdentifier/LCT.PackageIdentifier.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
66
<AssemblyName>PackageIdentifier</AssemblyName>
7-
<Version>7.0.0</Version>
7+
<Version>7.0.1</Version>
88
</PropertyGroup>
99

1010
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

src/LCT.PackageIdentifier/PythonProcessor.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ private static List<PythonPackage> GetPackagesFromTOMLFile(string filePath, List
130130
Name = node["name"].ToString(),
131131
Version = node["version"].ToString(),
132132
PurlID = Dataconstant.PurlCheck()["PYTHON"] + "/" + node["name"].ToString() + "@" + node["version"].ToString(),
133-
Isdevdependent = node["category"].ToString() != "main",
133+
// By Default Tommy.TomlLazy is coming instead of Null or empty
134+
Isdevdependent = (node["category"].ToString() != "main" && node["category"].ToString() != "Tommy.TomlLazy"),
134135
FoundType = Dataconstant.Discovered
135136
};
136137

src/LCT.SW360PackageCreator/LCT.SW360PackageCreator.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
66
<AssemblyName>SW360PackageCreator</AssemblyName>
7-
<Version>7.0.0</Version>
7+
<Version>7.0.1</Version>
88
<RootNamespace>LCT.SW360PackageCreator</RootNamespace>
99
</PropertyGroup>
1010

src/LCT.Services/LCT.Services.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Library</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
6-
<Version>7.0.0</Version>
6+
<Version>7.0.1</Version>
77
</PropertyGroup>
88

99
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

0 commit comments

Comments
 (0)