Skip to content

Commit

Permalink
v10.09 release.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 309945532
Change-Id: If284da85bdde33fda215fca9c592fa9d647e3a78
  • Loading branch information
ozdemir08 authored and copybara-github committed May 5, 2020
1 parent b5a2ab5 commit 1680e8e
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
Version 0.10.09
Bug fixes:
* Fixed the issue of having an invalidated account in cache.
* Added more logs to sign-in and sign-out, removed unnecessary logs, formatted code.
* Moved AndroidClient.SignOut method callback onto the main thread.

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.
Expand Down
Binary file not shown.
Binary file not shown.
Binary file modified samples/CubicPilot/CubicPilot.unitypackage
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 modified 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 = 0x01008;
public const string VersionString = "0.10.08";
public const string VersionKey = "01008";
public const int VersionInt = 0x01009;
public const string VersionString = "0.10.09";
public const string VersionKey = "01009";
}
}
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.08"
currentPluginVersion = "0.10.09"
currentPluginBasename = 'GooglePlayGamesPlugin'
currentPluginName = "${currentPluginBasename}-${currentPluginVersion}.unitypackage"
resolverDir = new File('build/jarresolver').absolutePath
Expand Down

0 comments on commit 1680e8e

Please sign in to comment.