Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 4b43ecb

Browse files
committed
bump v5.13.1
1 parent ed60b5e commit 4b43ecb

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<Version>5.13.0</Version>
4+
<Version>5.13.1</Version>
55
<Authors>ServiceStack</Authors>
66
<Company>ServiceStack, Inc.</Company>
77
<Copyright>&#169; 2008-2022 ServiceStack, Inc</Copyright>

src/ServiceStack.Text/Env.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,15 @@ static Env()
108108
+ PclExport.Instance.PlatformName
109109
+ (IsMono ? "/Mono" : "")
110110
+ (IsLinux ? "/Linux" : IsOSX ? "/OSX" : IsUnix ? "/Unix" : IsWindows ? "/Windows" : "/UnknownOS")
111-
+ (IsIOS ? "/iOS" : IsAndroid ? "/Android" : IsUWP ? "/UWP" : "");
111+
+ (IsIOS ? "/iOS" : IsAndroid ? "/Android" : IsUWP ? "/UWP" : "")
112+
+ (IsNet6 ? "/net6" : IsNetStandard20 ? "/std2.0" : IsNetFramework ? "netfx" : "");
112113

113114
__releaseDate = new DateTime(2001,01,01);
114115
}
115116

116117
public static string VersionString { get; set; }
117118

118-
public static decimal ServiceStackVersion = 5.130m;
119+
public static decimal ServiceStackVersion = 5.131m;
119120

120121
public static bool IsLinux { get; set; }
121122

@@ -271,7 +272,7 @@ private static bool IsInAppContainer
271272
break;
272273
case 0: // ERROR_SUCCESS
273274
case 122: // ERROR_INSUFFICIENT_BUFFER
274-
// Success is actually insufficent buffer as we're really only looking for
275+
// Success is actually insufficient buffer as we're really only looking for
275276
// not NO_APPLICATION and we're not actually giving a buffer here. The
276277
// API will always return NO_APPLICATION if we're not running under a
277278
// WinRT process, no matter what size the buffer is.

tests/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<Version>5.13.0</Version>
4+
<Version>5.13.1</Version>
55
<LangVersion>latest</LangVersion>
66
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
77
</PropertyGroup>

0 commit comments

Comments
 (0)