mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Update version to 0.16.0
This commit is contained in:
parent
e140419323
commit
266ece82f2
4 changed files with 6 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
||||||
mode: ContinuousDeployment
|
mode: ContinuousDeployment
|
||||||
increment: Patch
|
increment: Patch
|
||||||
next-version: 0.15.0
|
next-version: 0.16.0
|
||||||
branches:
|
branches:
|
||||||
master:
|
master:
|
||||||
tag: alpha
|
tag: alpha
|
|
@ -734,11 +734,11 @@ namespace LibHac.Fs.Impl
|
||||||
public static ReadOnlySpan<byte> FsModuleName => // "$fs"
|
public static ReadOnlySpan<byte> FsModuleName => // "$fs"
|
||||||
new[] { (byte)'$', (byte)'f', (byte)'s' };
|
new[] { (byte)'$', (byte)'f', (byte)'s' };
|
||||||
|
|
||||||
/// <summary>"<c>0.15.0</c>"</summary>
|
/// <summary>"<c>0.16.0</c>"</summary>
|
||||||
public static ReadOnlySpan<byte> LogLibHacVersion => // "0.15.0"
|
public static ReadOnlySpan<byte> LogLibHacVersion => // "0.16.0"
|
||||||
new[]
|
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>
|
/// <summary>"<c>"</c>"</summary>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<VersionPrefix>0.15.0</VersionPrefix>
|
<VersionPrefix>0.16.0</VersionPrefix>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<VersionPrefix>0.15.0</VersionPrefix>
|
<VersionPrefix>0.16.0</VersionPrefix>
|
||||||
<PathMap Condition=" '$(BuildType)' == 'Release' ">$(MSBuildProjectDirectory)=C:/hactoolnet/</PathMap>
|
<PathMap Condition=" '$(BuildType)' == 'Release' ">$(MSBuildProjectDirectory)=C:/hactoolnet/</PathMap>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue