Skip to content

Commit

Permalink
v10.10 release.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 327439869
Change-Id: I7a65dd26dc8767377dd6e4fa0b6f95eb152108b3
  • Loading branch information
Play Games Services Team authored and copybara-github committed Aug 19, 2020
1 parent 12ed05c commit 57cfdbd
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 0.10.10
New Features:
* Added Friends APIs: Play Games now has a cross-game Friends list. Request access to your players cross-game PGS friends list and integrate it with your in-game system to help players play with a set of high-quality gaming friends, and help people find their friends within your game. Learn more about Play Games Services .
Bug fixes:
* Removed Multiplayer code.

Version 0.10.09
Bug fixes:
* Fixed the issue of having an invalidated account in cache.
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/SmokeTest/SmokeTest.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 = 0x01009;
public const string VersionString = "0.10.09";
public const string VersionKey = "01009";
public const int VersionInt = 0x01010;
public const string VersionString = "0.10.10";
public const string VersionKey = "01010";
}
}
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.09"
currentPluginVersion = "0.10.10"
currentPluginBasename = 'GooglePlayGamesPlugin'
currentPluginName = "${currentPluginBasename}-${currentPluginVersion}.unitypackage"
resolverDir = new File('build/jarresolver').absolutePath
Expand Down

0 comments on commit 57cfdbd

Please sign in to comment.