Update version to 0.16.1

This commit is contained in:
Alex Barney 2022-04-01 19:41:03 -07:00
parent 7d807c1cd0
commit 7a51c5f002
4 changed files with 7 additions and 7 deletions

View file

@ -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

View file

@ -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>

View file

@ -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>

View file

@ -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>