Skip to content

Commit

Permalink
Release 0.13.2
Browse files Browse the repository at this point in the history
- Upgrade to net7.0
- Fixed another issue with KuboBootstrapper not working on Linux
  • Loading branch information
Arlodotexe committed Nov 14, 2023
1 parent 59b3513 commit 488b846
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
5 changes: 5 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"sdk": {
"version": "7.0.403"
}
}
2 changes: 1 addition & 1 deletion src/KuboBootstrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ void Process_OutputDataReceived(object? sender, DataReceivedEventArgs e)

void ProcessOnErrorDataReceived(object sender, DataReceivedEventArgs e)
{
if (!string.IsNullOrWhiteSpace(e.Data) && !e.Data.Contains("[WARN]"))
if (!string.IsNullOrWhiteSpace(e.Data) && e.Data.Contains("Error: "))
{
throw new InvalidOperationException($"Error received while starting daemon: {e.Data}");
}
Expand Down
11 changes: 9 additions & 2 deletions src/OwlCore.Kubo.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net6.0;net7.0</TargetFrameworks>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
<WarningsAsErrors>nullable</WarningsAsErrors>
Expand All @@ -14,13 +14,20 @@
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>

<Author>Arlo Godfrey</Author>
<Version>0.13.1</Version>
<Version>0.13.2</Version>
<Product>OwlCore</Product>
<Description>
An essential toolkit for Kubo, IPFS and the distributed web.
</Description>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReleaseNotes>
--- 0.13.2 ---
[Fixed]
Fixed an issue with KuboBootstrapper not starting on Linux (caused by warning-based stderr used by newer versions of Kubo).

[Improvements]
Added support for net7.0

--- 0.13.1 ---
[Fixed]
Fixed an issue with KuboBootstrapper not starting on Linux.
Expand Down
2 changes: 1 addition & 1 deletion tests/OwlCore.Kubo.Tests/OwlCore.Kubo.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand Down

0 comments on commit 488b846

Please sign in to comment.