Bump version to 0.20.0

This commit is contained in:
Alex Barney 2023-12-10 17:06:08 -07:00
parent 32dff54cce
commit 7a8f0de6db
5 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
mode: ContinuousDeployment
increment: Patch
next-version: 0.19.0
next-version: 0.20.0
commit-date-format: yyyy-MM-dd HH:mm:ss
branches:
master:

View file

@ -831,8 +831,8 @@ namespace LibHac.Fs.Impl
/// <summary>"<c>$fs</c>"</summary>
public static ReadOnlySpan<byte> FsModuleName => "$fs"u8;
/// <summary>"<c>0.19.0</c>"</summary>
public static ReadOnlySpan<byte> LogLibHacVersion => "0.19.0"u8;
/// <summary>"<c>0.20.0</c>"</summary>
public static ReadOnlySpan<byte> LogLibHacVersion => "0.20.0"u8;
/// <summary>"<c>"</c>"</summary>
public static byte LogQuote => (byte)'"';

View file

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<VersionPrefix>0.19.0</VersionPrefix>
<VersionPrefix>0.20.0</VersionPrefix>
<TargetFramework>net8.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

View file

@ -2,7 +2,7 @@
{
internal static class VersionInfo
{
public static string Version => "0.19.0";
public static string Version => "0.20.0";
public static string CommitTime => "";
public static string CommitHash => "";
}

View file

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