Update version to 0.16.0

This commit is contained in:
Alex Barney 2022-02-05 16:13:31 -07:00
parent e140419323
commit 266ece82f2
4 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
mode: ContinuousDeployment
increment: Patch
next-version: 0.15.0
next-version: 0.16.0
branches:
master:
tag: alpha

View file

@ -734,11 +734,11 @@ namespace LibHac.Fs.Impl
public static ReadOnlySpan<byte> FsModuleName => // "$fs"
new[] { (byte)'$', (byte)'f', (byte)'s' };
/// <summary>"<c>0.15.0</c>"</summary>
public static ReadOnlySpan<byte> LogLibHacVersion => // "0.15.0"
/// <summary>"<c>0.16.0</c>"</summary>
public static ReadOnlySpan<byte> LogLibHacVersion => // "0.16.0"
new[]
{
(byte)'0', (byte)'.', (byte)'1', (byte)'5', (byte)'.', (byte)'0'
(byte)'0', (byte)'.', (byte)'1', (byte)'6', (byte)'.', (byte)'0'
};
/// <summary>"<c>"</c>"</summary>

View file

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<VersionPrefix>0.15.0</VersionPrefix>
<VersionPrefix>0.16.0</VersionPrefix>
<TargetFramework>net6.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

View file

@ -6,7 +6,7 @@
</PropertyGroup>
<PropertyGroup>
<VersionPrefix>0.15.0</VersionPrefix>
<VersionPrefix>0.16.0</VersionPrefix>
<PathMap Condition=" '$(BuildType)' == 'Release' ">$(MSBuildProjectDirectory)=C:/hactoolnet/</PathMap>
</PropertyGroup>