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 mode: ContinuousDeployment
increment: Patch increment: Patch
next-version: 0.19.0 next-version: 0.20.0
commit-date-format: yyyy-MM-dd HH:mm:ss commit-date-format: yyyy-MM-dd HH:mm:ss
branches: branches:
master: master:

View file

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

View file

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

View file

@ -2,7 +2,7 @@
{ {
internal static class VersionInfo 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 CommitTime => "";
public static string CommitHash => ""; public static string CommitHash => "";
} }

View file

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