Skip to content

Commit 0953616

Browse files
authored
Merge pull request #438 from immutable/chore/update-version-1.31.1
chore: update version
2 parents c553511 + c729bf9 commit 0953616

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/Packages/Marketplace/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.immutable.marketplace",
3-
"version": "1.31.0",
3+
"version": "1.31.1",
44
"description": "Marketplace package for the Immutable SDK for Unity",
55
"displayName": "Immutable Marketplace",
66
"author": {

src/Packages/Passport/Runtime/Scripts/Private/Helpers/SdkVersionInfoHelpers.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public class SdkVersionInfoHelpers
44
{
55
public static string GetSdkVersionInfo()
66
{
7-
return "1.31.0";
7+
return "1.31.1";
88
}
99
}
1010
}

src/Packages/Passport/Samples~/SamplesScenesScripts/Scripts/Passport/AuthenticatedScript.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class AuthenticatedScript : MonoBehaviour
3737
private Passport Passport;
3838
#pragma warning restore CS8618
3939

40-
async void Start()
40+
void Start()
4141
{
4242
if (Passport.Instance != null)
4343
{
@@ -165,8 +165,8 @@ public async void GetLinkedAddresses()
165165
{
166166
ShowOutput($"Failed to get linked addresses: {ex.Message}");
167167
}
168-
}
169-
168+
}
169+
170170
/// <summary>
171171
/// Navigates to Link Wallet scene.
172172
/// </summary>

src/Packages/Passport/Samples~/SamplesScenesScripts/Scripts/Passport/SelectAuthMethodScript.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public void UsePKCE()
8181
/// authorisation has been granted by the user</param>
8282
/// <param name="logoutRedirectUri">The URL to which auth will redirect the browser
8383
/// after log out is complete</param>
84-
private async void InitialisePassport(string redirectUri = null, string logoutRedirectUri = null)
84+
private async void InitialisePassport(string? redirectUri = null, string? logoutRedirectUri = null)
8585
{
8686
ShowOutput("Initialising Passport...");
8787

src/Packages/Passport/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.immutable.passport",
3-
"version": "1.31.0",
3+
"version": "1.31.1",
44
"description": "The Immutable SDK for Unity helps you integrate your game with Immutable Passport.\n\nFor a complete working example, please visit https://github.com/immutable/unity-immutable-sdk/tree/main/sample.",
55
"displayName": "Immutable Passport",
66
"author": {

0 commit comments

Comments
 (0)