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
|
mode: ContinuousDeployment
|
||||||
increment: Patch
|
increment: Patch
|
||||||
next-version: 0.16.0
|
next-version: 0.16.1
|
||||||
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.16.0</c>"</summary>
|
/// <summary>"<c>0.16.1</c>"</summary>
|
||||||
public static ReadOnlySpan<byte> LogLibHacVersion => // "0.16.0"
|
public static ReadOnlySpan<byte> LogLibHacVersion => // "0.16.1"
|
||||||
new[]
|
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>
|
/// <summary>"<c>"</c>"</summary>
|
||||||
|
|
|
@ -2,14 +2,14 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<VersionPrefix>0.16.0</VersionPrefix>
|
<VersionPrefix>0.16.1</VersionPrefix>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Authors>Alex Barney</Authors>
|
<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>
|
<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>
|
<PackageProjectUrl>https://github.com/Thealexbarney/LibHac</PackageProjectUrl>
|
||||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<VersionPrefix>0.16.0</VersionPrefix>
|
<VersionPrefix>0.16.1</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