Skip to content

Commit

Permalink
chore: Hotfix update to version 6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wijayaadhisurya committed Sep 16, 2021
1 parent fb195f6 commit 2437329
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [6.0.1](https://bitbucket.org/accelbyte/justice-unreal-sdk-plugin/branches/compare/6.0.1%0D6.0.0) (2021-09-16)


### Bug Fixes

* **User:** change UpdateUser verb from PUT to PATCH ([d0babcf](https://bitbucket.org/accelbyte/justice-unreal-sdk-plugin/commits/d0babcf7ad8c2e60fa1d6c1f59c095c09f94a9b0))

## [6.0.0](https://bitbucket.org/accelbyte/justice-unreal-sdk-plugin/branches/compare/6.0.0%0D5.0.0) (2021-09-13)


Expand Down
2 changes: 1 addition & 1 deletion Source/AccelByteUe4Sdk/Private/Api/AccelByteUserApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ void User::UpdateUser(FUserUpdateRequest UpdateRequest, const THandler<FAccountU

FString Authorization = FString::Printf(TEXT("Bearer %s"), *CredentialsRef.GetAccessToken());
FString Url = FString::Printf(TEXT("%s/v4/public/namespaces/%s/users/me"), *SettingsRef.IamServerUrl, *SettingsRef.Namespace);
FString Verb = TEXT("PUT");
FString Verb = TEXT("PATCH");
FString ContentType = TEXT("application/json");
FString Accept = TEXT("application/json");
FString Content;
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "6.0.0"
"version": "6.0.1"
}

0 comments on commit 2437329

Please sign in to comment.