diff --git a/CHANGELOG.md b/CHANGELOG.md index 96760b3..30a129e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog --------- +**7.10.0-beta** +* added checks to safely upgrade from 7.6.0 , 7.6.1, 7.7.0 without having any impact on metrics for Android +* fixed impression callback json for Digital Turbine + **7.9.1** * consent status is now tracked correctly on iOS * bug fix for fps tracking on iOS diff --git a/Runtime/Android/gameanalytics.aar b/Runtime/Android/gameanalytics.aar index 5a3d3a8..2eed143 100644 Binary files a/Runtime/Android/gameanalytics.aar and b/Runtime/Android/gameanalytics.aar differ diff --git a/Runtime/Scripts/Setup/Settings.cs b/Runtime/Scripts/Setup/Settings.cs index 8a2b186..b885ab0 100644 --- a/Runtime/Scripts/Setup/Settings.cs +++ b/Runtime/Scripts/Setup/Settings.cs @@ -53,7 +53,7 @@ public struct HelpInfo /// The version of the GA Unity Wrapper plugin /// [HideInInspector] - public static string VERSION = "7.9.1"; + public static string VERSION = "7.10.0-beta"; [HideInInspector] public static bool CheckingForUpdates = false; diff --git a/package.json b/package.json index 4b5431a..d540fd3 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,10 @@ { "name": "com.gameanalytics.sdk", - "version": "7.9.1", + "version": "7.10.0-beta", "displayName": "GameAnalytics", "description": "GameAnalytics collects and stores your data with no limits. You can then view your core KPI's in order to see what areas of your game need to improvements. If you want to find out more about how gamers play, then add in funnels, progression events and resource tracking. ", "unity": "2018.1", + "private": true, "dependencies": { "com.google.external-dependency-manager": "1.2.168" },