Skip to content

Commit

Permalink
Update version to v0.9.64
Browse files Browse the repository at this point in the history
  • Loading branch information
olehkuznetsov committed May 3, 2019
1 parent ecee0d8 commit 0157e45
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Version 0.9.64
New Features:
* Updated gradle version to 5.4.1 and tools to 3.4.0
Bug Fixes:
* #2553 NullReferenceException with new v0.9.63 Achievements system
* #2545 Soft crash when opening achievements
* #2549 PlayerStats.AvgSessonLength is a typo

Version 0.9.63
New Features:
* Updated gradle version to 3.3.2
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 @@ -34,9 +34,9 @@ public class PluginVersion
public const string VersionKeyJarResolverDLL = "00935";

// Current Version.
public const int VersionInt = 0x0963;
public const string VersionString = "0.9.63";
public const string VersionKey = "00963";
public const int VersionInt = 0x0964;
public const string VersionString = "0.9.64";
public const string VersionKey = "00964";

// used to check for the correct min version or play services: 10.2
public const int MinGmsCoreVersionCode = 10200000;
Expand Down
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.9.63"
currentPluginVersion = "0.9.64"
currentPluginBasename = 'GooglePlayGamesPlugin'
currentPluginName = "${currentPluginBasename}-${currentPluginVersion}.unitypackage"
resolverDir = new File('build/jarresolver').absolutePath
Expand Down

0 comments on commit 0157e45

Please sign in to comment.