Skip to content

Commit

Permalink
v1.0.4 (#4)
Browse files Browse the repository at this point in the history
* Upgrade Newtonsoft.Json to version 13.0.1 to fix a security issue

* Upgrade nuget packages and target frameworks

* v1.0.4
  • Loading branch information
maurizuki authored Jun 23, 2022
1 parent 9a7f3d0 commit 148ae7d
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="1.3.0">
<PackageReference Include="coverlet.collector" Version="3.1.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
29 changes: 23 additions & 6 deletions BIExchangeRates.Client/BIExchangeRates.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,23 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Authors>Maurizio Basaglia</Authors>
<Description>A wrapper for the REST API of the currency exchange rates of Banca d'Italia (https://tassidicambio.bancaditalia.it).</Description>
<Copyright>© 2020 Maurizio Basaglia</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageTags></PackageTags>
<Description>A wrapper for the REST API of the currency exchange rates of Banca d'Italia (the central bank of Italy).</Description>
<Copyright>© 2020-2022 Maurizio Basaglia</Copyright>
<PackageTags>currency exchange rates;banca italia</PackageTags>
<RepositoryUrl>https://github.com/maurizuki/BIExchangeRates.Client</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>1.0.3</Version>
<Version>1.0.4</Version>
<Title>BIExchangeRates.Client</Title>
<PackageProjectUrl>https://github.com/maurizuki/BIExchangeRates.Client</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>Fixed security issue "Improper Handling of Exceptional Conditions" (CWE-755) in Newtonsoft.Json &lt; 13.0.1.</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>

<ItemGroup>
Expand All @@ -23,4 +29,15 @@
</None>
</ItemGroup>

<ItemGroup>
<None Update="icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>
1 change: 1 addition & 0 deletions BIExchangeRates.Client/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A wrapper for the REST API of the currency exchange rates of [Banca d'Italia](https://tassidicambio.bancaditalia.it) (the central bank of Italy).
Binary file added BIExchangeRates.Client/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions BIExchangeRates.Console/BIExchangeRates.Console.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Authors>Maurizio Basaglia</Authors>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 148ae7d

Please sign in to comment.