Skip to content

Commit

Permalink
Update binaries to 1.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Dec 20, 2024
1 parent 1a4820a commit 32dd377
Show file tree
Hide file tree
Showing 14 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/managed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
build:
uses: xoofx/.github/.github/workflows/dotnet.yml@main
with:
dotnet-version: 7.0
dotnet-version: 8.0
secrets:
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Blake3.NET is a fast managed wrapper around the SIMD Rust implementations of the [BLAKE3](https://github.com/BLAKE3-team/BLAKE3) cryptographic hash function.

> The current _native_ version of BLAKE3 used by Blake3.NET is `1.4.1`
> The current _native_ version of BLAKE3 used by Blake3.NET is `1.5.5`
## Features

Expand Down
4 changes: 2 additions & 2 deletions src/Blake3.Benchmarks/Blake3.Benchmarks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
<PackageReference Include="SauceControl.Blake2Fast" Version="2.0.0" />
</ItemGroup>

Expand Down
8 changes: 4 additions & 4 deletions src/Blake3.Tests/Blake3.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == '' AND '$(PackAsTool)' != 'true'">$(NETCoreSdkRuntimeIdentifier)</RuntimeIdentifier>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit" Version="4.3.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<Content Include="..\Blake3\runtimes\$(RuntimeIdentifier)\native\*.*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
Expand Down
4 changes: 2 additions & 2 deletions src/Blake3/Blake3.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="Blake3.props" />

<PropertyGroup>
<TargetFrameworks>net7.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -21,7 +21,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MinVer" Version="4.3.0">
<PackageReference Include="MinVer" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Binary file modified src/Blake3/runtimes/linux-arm/native/libblake3_dotnet.so
Binary file not shown.
Binary file modified src/Blake3/runtimes/linux-arm64/native/libblake3_dotnet.so
Binary file not shown.
Binary file modified src/Blake3/runtimes/linux-x64/native/libblake3_dotnet.so
Binary file not shown.
Binary file modified src/Blake3/runtimes/osx-arm64/native/libblake3_dotnet.dylib
Binary file not shown.
Binary file modified src/Blake3/runtimes/osx-x64/native/libblake3_dotnet.dylib
Binary file not shown.
Binary file modified src/Blake3/runtimes/win-arm64/native/blake3_dotnet.dll
Binary file not shown.
Binary file modified src/Blake3/runtimes/win-x64/native/blake3_dotnet.dll
Binary file not shown.
Binary file modified src/Blake3/runtimes/win-x86/native/blake3_dotnet.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion src/global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.100",
"version": "8.0.100",
"rollForward": "latestMinor",
"allowPrerelease": false
}
Expand Down

0 comments on commit 32dd377

Please sign in to comment.