Skip to content

Commit c6ceba3

Browse files
committed
Release 0.19.1. See release notes or expand full commit message.
[Improvements] Updated vulnerable System.Text.Json to latest stable 9.0.0. Updated Microsoft.Bcl.AsyncInterfaces to 9.0.0. Added net9.0 to supported TargetFrameworks.
1 parent 81220fb commit c6ceba3

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install .NET SDK
2525
uses: actions/setup-dotnet@v1
2626
with:
27-
dotnet-version: '8.0.x'
27+
dotnet-version: '9.0.x'
2828

2929
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3030
- name: Checkout Repository

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install .NET SDK
1717
uses: actions/setup-dotnet@v1
1818
with:
19-
dotnet-version: '8.0.x'
19+
dotnet-version: '9.0.x'
2020

2121
- name: Restore dependencies
2222
run: dotnet restore

global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.201",
3+
"version": "9.0.100",
44
"rollForward": "latestFeature"
55
}
66
}

src/OwlCore.Kubo.csproj

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard2.0;net8.0;</TargetFrameworks>
3+
<TargetFrameworks>netstandard2.0;net8.0;net9.0</TargetFrameworks>
44
<Nullable>enable</Nullable>
55
<LangVersion>12.0</LangVersion>
66
<WarningsAsErrors>nullable</WarningsAsErrors>
@@ -14,13 +14,19 @@
1414
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
1515

1616
<Author>Arlo Godfrey</Author>
17-
<Version>0.19.0</Version>
17+
<Version>0.19.1</Version>
1818
<Product>OwlCore</Product>
1919
<Description>
2020
An essential toolkit for Kubo, IPFS and the distributed web.
2121
</Description>
2222
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
2323
<PackageReleaseNotes>
24+
--- 0.19.1 ---
25+
[Improvements]
26+
Updated vulnerable System.Text.Json to latest stable 9.0.0.
27+
Updated Microsoft.Bcl.AsyncInterfaces to 9.0.0.
28+
Added net9.0 to supported TargetFrameworks.
29+
2430
--- 0.19.0 ---
2531
[New]
2632
Added IAddFileToGetCid interface. This is functionally identical to IGetCid, but instead of simply returning a CID already in ipfs, it computes the CID by providing data to ipfs using preferences in the AddFileOptions parameter.
@@ -463,7 +469,7 @@ Added unit tests.
463469
<PackageReference Include="CommunityToolkit.Common" Version="8.3.2" />
464470
<PackageReference Include="CommunityToolkit.Diagnostics" Version="8.3.2" />
465471
<PackageReference Include="IpfsShipyard.Ipfs.Http.Client" Version="0.5.1" />
466-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
472+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.0" />
467473
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
468474
<PackageReference Include="OwlCore.ComponentModel.Settings" Version="0.1.1" />
469475
<PackageReference Include="OwlCore.Diagnostics" Version="0.0.0" />
@@ -476,6 +482,6 @@ Added unit tests.
476482
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
477483
</PackageReference>
478484
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
479-
<PackageReference Include="System.Text.Json" Version="8.0.5" />
485+
<PackageReference Include="System.Text.Json" Version="9.0.0" />
480486
</ItemGroup>
481487
</Project>

tests/OwlCore.Kubo.Tests/OwlCore.Kubo.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<LangVersion>12.0</LangVersion>

0 commit comments

Comments
 (0)