Skip to content

Commit

Permalink
Bump version to 4.3.2 and fix NativeLibraryLoader version.
Browse files Browse the repository at this point in the history
  • Loading branch information
mellinoe committed Jun 13, 2018
1 parent ff8fcf6 commit f7ff722
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion Directory.Build.props
Expand Up @@ -7,13 +7,18 @@
<BaseIntermediateOutputPath>$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\obj\$(MSBuildProjectName)'))\</BaseIntermediateOutputPath>
<PackageOutputPath>$(BinDir)\Packages\$(Configuration)</PackageOutputPath>
</PropertyGroup>

<PropertyGroup>
<ShaderGenVersion>1.2.0-beta2</ShaderGenVersion>
<NativeLibraryLoaderVersion>1.0.9</NativeLibraryLoaderVersion>
</PropertyGroup>

<PropertyGroup>
<PackageLicenseUrl>https://raw.githubusercontent.com/mellinoe/veldrid/master/LICENSE</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Copyright>Copyright 2018 (c) Eric Mellino. All rights reserved.</Copyright>
<Authors>Eric Mellino</Authors>
<RepositoryUrl>https://github.com/mellinoe/veldrid</RepositoryUrl>
<ShaderGenVersion>1.2.0-beta2</ShaderGenVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Veldrid.SDL2/Veldrid.SDL2.csproj
Expand Up @@ -26,7 +26,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="NativeLibraryLoader" Version="1.0.9" />
<PackageReference Include="NativeLibraryLoader" Version="$(NativeLibraryLoaderVersion)" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.4.0" />
<PackageReference Include="System.Numerics.Vectors" Version="4.4.0" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Veldrid/Veldrid.csproj
Expand Up @@ -16,7 +16,7 @@
<PackageReference Include="System.Buffers" Version="4.4.0" />
<PackageReference Include="System.Numerics.Vectors" Version="4.4.0" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.4.0" />
<PackageReference Include="NativeLibraryLoader" Version="1.0.8" />
<PackageReference Include="NativeLibraryLoader" Version="$(NativeLibraryLoaderVersion)" />

<PackageReference Include="SharpDX" Version="4.0.1" Condition="'$(ExcludeD3D11)' != 'true'" />
<PackageReference Include="SharpDX.D3DCompiler" Version="4.0.1" Condition="'$(ExcludeD3D11)' != 'true'" />
Expand Down
2 changes: 1 addition & 1 deletion version.json
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "4.3.1",
"version": "4.3.2",
"publicReleaseRefSpec": [
"^refs/tags/v\\d+\\.\\d+" // we also release tags starting with vN.N
],
Expand Down

0 comments on commit f7ff722

Please sign in to comment.