Skip to content

Commit

Permalink
bumping Versions for Release
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalcoyote committed Nov 8, 2020
1 parent 30d60c0 commit 5fefd41
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions Src/NuGetDefense/NuGetDefense.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@

<ItemGroup>
<PackageReference Include="NuGet.Versioning" Version="[5.7.0]" />
<PackageReference Include="NuGetDefense.Core" Version="[1.0.7]" />
<PackageReference Include="NuGetDefense.NVD" Version="[1.0.3.1]" />
<PackageReference Include="NuGetDefense.OSSIndex" Version="1.0.5" />
<PackageReference Include="NuGetDefense.Core" Version="1.0.8" />
<PackageReference Include="NuGetDefense.NVD" Version="1.0.3.3" />
<PackageReference Include="NuGetDefense.OSSIndex" Version="1.0.6-pre0002" />
<PackageReference Include="Serilog.Sinks.Console" Version="[3.1.1]" />
<PackageReference Include="Serilog.Sinks.File" Version="[4.1.0]" />
<PackageReference Include="System.Text.Json" Version="[4.7.2]" />
Expand Down
2 changes: 1 addition & 1 deletion Src/NuGetDefense/NuGetDefense.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>NuGetDefense</id>
<title>NuGetDefense</title>
<version>1.0.13.1</version>
<version>1.0.14</version>
<authors>Curtis Carter</authors>
<owners>Curtis Carter</owners>
<projectUrl>https://digitalcoyote.github.io/NuGetDefense/</projectUrl>
Expand Down
2 changes: 1 addition & 1 deletion Src/NuGetDefense/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace NuGetDefense
internal class Program
{
private const string UserAgentString =
@"NuGetDefense/1.0.13.1 (https://github.com/digitalcoyote/NuGetDefense/blob/master/README.md)";
@"NuGetDefense/1.0.14 (https://github.com/digitalcoyote/NuGetDefense/blob/master/README.md)";

private static string _nuGetFile;
private static string _projectFileName;
Expand Down
2 changes: 1 addition & 1 deletion Src/NuGetDefenseTests/NuGetDefenseTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
Expand Down
20 changes: 10 additions & 10 deletions Src/NuGetDefenseTests/VulnerabilityReportsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ public void ReportVulnerabilityWithNullReferences()
"TestPkg", new Dictionary<string, Vulnerability>
{
{
"CVE-Test", new Vulnerability
{
Cve = "CVE-Test",
Cwe = "CWE-Test",
CvssScore = 6.6,
Description = "Test Description",
References = null,
Vendor = "Test Vendor",
Vector = Vulnerability.AccessVectorType.NETWORK
}
"CVE-Test", new Vulnerability(

"CVE-Test",
6.6,
"CWE-Test",
"Test Description",
null,
Vulnerability.AccessVectorType.NETWORK,
"Test Vendor"
)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build/_build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Nuke.Common" Version="0.24.11" />
<PackageReference Include="Nuke.Common" Version="0.25.0" />
</ItemGroup>

</Project>

0 comments on commit 5fefd41

Please sign in to comment.