Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ksgfk committed Aug 4, 2024
1 parent 1223c61 commit 9aeaaa2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions EmbreeSharp.Test/EmbreeSharp.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.4.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.4.3" />
<PackageReference Include="MSTest.TestAdapter" Version="3.5.0" />
<PackageReference Include="MSTest.TestFramework" Version="3.5.0" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>

<PackageReference Include="embree-win-x64" Version="4.3.2" />
<PackageReference Include="embree-linux-x64" Version="4.3.2" />
<PackageReference Include="embree-osx-x64" Version="4.3.2" />
<PackageReference Include="embree-osx-arm64" Version="4.3.2" />
<PackageReference Include="embree-win-x64" Version="4.3.3" />
<PackageReference Include="embree-linux-x64" Version="4.3.3" />
<PackageReference Include="embree-osx-x64" Version="4.3.3" />
<PackageReference Include="embree-osx-arm64" Version="4.3.3" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions EmbreeSharp/EmbreeSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

<AssemblyVersion>0.6.4</AssemblyVersion>
<FileVersion>0.6.4</FileVersion>
<AssemblyVersion>0.6.5</AssemblyVersion>
<FileVersion>0.6.5</FileVersion>
<RepositoryType>git</RepositoryType>
<Description>Embree C# Low-level binding</Description>
<Company>ksgfk</Company>
Expand All @@ -17,7 +17,7 @@
<PackageTags>embree;wrapper</PackageTags>
<PackageReleaseNotes>add helper func</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>0.6.4</Version>
<Version>0.6.5</Version>

<PublishRepositoryUrl>true</PublishRepositoryUrl>
<DebugType>embedded</DebugType>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This project is still under development. API are not stable.

## Use

Now target embree version is `v4.3.2`
Now target embree version is `v4.3.3`

Install this package from nuget.

Expand All @@ -38,7 +38,7 @@ If you are using version `4.3.0`. osx-x64 should first install tbb in system.

### About native library

The official only provides binary files for `win-x64`, `linux-x64` and `osx-x64`. If you want to run on other platforms, you should compile embree by yourself.
The official only provides binary files for `win-x64`, `linux-x64`, `osx-x64` and `osx-arm64`. If you want to run on other platforms, you should compile embree by yourself.

Because native libraries uploaded to nuget are separate, everyone can upload their compiled native libraries for others to use.

Expand Down

0 comments on commit 9aeaaa2

Please sign in to comment.