mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Update version to 0.16.1
This commit is contained in:
parent
7d807c1cd0
commit
7a51c5f002
4 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
mode: ContinuousDeployment
|
||||
increment: Patch
|
||||
next-version: 0.16.0
|
||||
next-version: 0.16.1
|
||||
branches:
|
||||
master:
|
||||
tag: alpha
|
|
@ -734,11 +734,11 @@ namespace LibHac.Fs.Impl
|
|||
public static ReadOnlySpan<byte> FsModuleName => // "$fs"
|
||||
new[] { (byte)'$', (byte)'f', (byte)'s' };
|
||||
|
||||
/// <summary>"<c>0.16.0</c>"</summary>
|
||||
public static ReadOnlySpan<byte> LogLibHacVersion => // "0.16.0"
|
||||
/// <summary>"<c>0.16.1</c>"</summary>
|
||||
public static ReadOnlySpan<byte> LogLibHacVersion => // "0.16.1"
|
||||
new[]
|
||||
{
|
||||
(byte)'0', (byte)'.', (byte)'1', (byte)'6', (byte)'.', (byte)'0'
|
||||
(byte)'0', (byte)'.', (byte)'1', (byte)'6', (byte)'.', (byte)'1'
|
||||
};
|
||||
|
||||
/// <summary>"<c>"</c>"</summary>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<OutputType>Library</OutputType>
|
||||
<VersionPrefix>0.16.0</VersionPrefix>
|
||||
<VersionPrefix>0.16.1</VersionPrefix>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<Authors>Alex Barney</Authors>
|
||||
<Copyright>Copyright © 2018-2021 Alex Barney</Copyright>
|
||||
<Copyright>Copyright © 2018-2022 Alex Barney</Copyright>
|
||||
<Description>A library that reimplements select portions of the Nintendo Switch operating system and allows reading content formats used by the OS.</Description>
|
||||
<PackageProjectUrl>https://github.com/Thealexbarney/LibHac</PackageProjectUrl>
|
||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<VersionPrefix>0.16.0</VersionPrefix>
|
||||
<VersionPrefix>0.16.1</VersionPrefix>
|
||||
<PathMap Condition=" '$(BuildType)' == 'Release' ">$(MSBuildProjectDirectory)=C:/hactoolnet/</PathMap>
|
||||
</PropertyGroup>
|
||||
|
||||
|
|
Loading…
Reference in a new issue