Skip to content

Commit

Permalink
v0.10.08 release
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 304397016
Change-Id: I6cb45187a8f91ebbf149406630ae0cb7a422ce77
  • Loading branch information
ozdemir08 authored and copybara-github committed Apr 2, 2020
1 parent 9f6a538 commit ed9e1d2
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
Version 0.10.08
Bug fixes:
* #2853 Fixed the authentication callback not called on the main thread issue.
* Migrated old urls to start with https instead of http.

Version 0.10.07
New Features:
* Implementation of new authentication method and permission APIs.
Bug fixes:
* #2836 Fixed the wrong conversion of TotalTimePlayed.
* #2781 Disabled unnecessary warnings.
* #2791 Added gameId field to PlayGamesUserProfile for Unity 2020.1.

Version 0.10.06
Bug fixes:
* #2776 Crashes due to uninstalled Play Games App.
Expand Down
Binary file not shown.
Binary file not shown.
Binary file modified samples/Minimal/Minimal.unitypackage
Binary file not shown.
Binary file modified samples/NearbyDroids/NearbyDroids.unitypackage
Binary file not shown.
Binary file modified samples/QuizRacer/QuizRacer.unitypackage
Binary file not shown.
Binary file modified samples/SmokeTest/SmokeTest.unitypackage
Binary file not shown.
Binary file added samples/TicTacToe/TicTactoe.unitypackage
Binary file not shown.
6 changes: 3 additions & 3 deletions source/PluginDev/Assets/GooglePlayGames/PluginVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ namespace GooglePlayGames
public class PluginVersion
{
// Current Version.
public const int VersionInt = 0x01007;
public const string VersionString = "0.10.07";
public const string VersionKey = "01007";
public const int VersionInt = 0x01008;
public const string VersionString = "0.10.08";
public const string VersionKey = "01008";
}
}
2 changes: 1 addition & 1 deletion source/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ project.ext {
samplesBuildSrc = file('build/sampleSrc').absolutePath
exportPath = file('build/plugin.unitypackage').absolutePath
currentPluginPath = file('../current-build').absolutePath
currentPluginVersion = "0.10.07"
currentPluginVersion = "0.10.08"
currentPluginBasename = 'GooglePlayGamesPlugin'
currentPluginName = "${currentPluginBasename}-${currentPluginVersion}.unitypackage"
resolverDir = new File('build/jarresolver').absolutePath
Expand Down

0 comments on commit ed9e1d2

Please sign in to comment.