Skip to content

Commit

Permalink
Merge pull request #42 from adjust/v4170
Browse files Browse the repository at this point in the history
Version 4.17.0
  • Loading branch information
Srđan Tubin authored Dec 4, 2018
2 parents 688e7d7 + 0a869e1 commit 6daa7e6
Show file tree
Hide file tree
Showing 16 changed files with 33 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Adjust/Adjust_nuget4.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Adjust</id>
<version>4.16.0</version>
<version>4.17.0</version>
<title>Adjust</title>
<authors>Adjust</authors>
<owners>Adjust</owners>
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### Version 4.17.0 (4th December 2018)
#### Added
- Added `GetSdkVersion()` method to `Adjust` interface to obtain current SDK version string.

---

### Version 4.16.0 (12th November 2018)
#### Added
- Added sending of UUID string with each attribution request.
Expand Down
2 changes: 1 addition & 1 deletion IntegrationTesting/TestApp/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public MainPage()

private void StartTestSession()
{
_testLibrary.StartTestSession(clientSdk: "wuap4.16.0");
_testLibrary.StartTestSession(clientSdk: "wuap4.17.0");
}

private string GetLocalIp()
Expand Down
Binary file modified VERSION
Binary file not shown.
2 changes: 1 addition & 1 deletion WindowsPcl/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.16.0")]
[assembly: AssemblyVersion("4.17.0")]
4 changes: 4 additions & 0 deletions WindowsPhone81/Adjust.cs
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,10 @@ public static void GdprForgetMe()
AdjustInstance.GdprForgetMe(DeviceUtil);
}

public static string GetSdkVersion()
{
return UtilWP81.GetClientSdk();
}
#if DEBUG
public static void SetTestOptions(Pcl.IntegrationTesting.AdjustTestOptions testOptions)
{
Expand Down
2 changes: 1 addition & 1 deletion WindowsPhone81/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.16.0")]
[assembly: AssemblyVersion("4.17.0")]
[assembly: ComVisible(false)]
4 changes: 2 additions & 2 deletions WindowsPhone81/UtilWP81.cs
Original file line number Diff line number Diff line change
Expand Up @@ -288,9 +288,9 @@ public bool IsInstallTracked()
return string.Equals(isInstallTracked, bool.TrueString, StringComparison.CurrentCultureIgnoreCase);
}

private string GetClientSdk()
internal static string GetClientSdk()
{
return "wphone81-4.16.0";
return "wphone81-4.17.0";
}

private static string GetOsName()
Expand Down
4 changes: 4 additions & 0 deletions WindowsStore/Adjust.cs
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,10 @@ public static void GdprForgetMe()
AdjustInstance.GdprForgetMe(DeviceUtil);
}

public static string GetSdkVersion()
{
return UtilWS.GetClientSdk();
}
#if DEBUG
public static void SetTestOptions(Pcl.IntegrationTesting.AdjustTestOptions testOptions)
{
Expand Down
2 changes: 1 addition & 1 deletion WindowsStore/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.16.0")]
[assembly: AssemblyVersion("4.17.0")]
[assembly: ComVisible(false)]
4 changes: 2 additions & 2 deletions WindowsStore/UtilWS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -286,9 +286,9 @@ public bool IsInstallTracked()
return string.Equals(isInstallTracked, bool.TrueString, StringComparison.CurrentCultureIgnoreCase);
}

private string GetClientSdk()
internal static string GetClientSdk()
{
return "wstore4.16.0";
return "wstore4.17.0";
}

private string GetOsName()
Expand Down
5 changes: 5 additions & 0 deletions WindowsUAP10/Adjust.cs
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,11 @@ public static void GdprForgetMe()
AdjustInstance.GdprForgetMe(DeviceUtil);
}

public static string GetSdkVersion()
{
return UtilUAP10.GetClientSdk();
}

#if DEBUG
public static void SetTestOptions(Pcl.IntegrationTesting.AdjustTestOptions testOptions)
{
Expand Down
2 changes: 1 addition & 1 deletion WindowsUAP10/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.16.0")]
[assembly: AssemblyVersion("4.17.0")]
[assembly: ComVisible(false)]
4 changes: 2 additions & 2 deletions WindowsUAP10/UtilUAP10.cs
Original file line number Diff line number Diff line change
Expand Up @@ -288,9 +288,9 @@ public bool IsInstallTracked()
return string.Equals(isInstallTracked, bool.TrueString, StringComparison.CurrentCultureIgnoreCase);
}

private string GetClientSdk()
internal static string GetClientSdk()
{
return "wuap4.16.0";
return "wuap4.17.0";
}

private static string GetOsName()
Expand Down
2 changes: 1 addition & 1 deletion WindowsUap/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.16.0")]
[assembly: AssemblyVersion("4.17.0")]
2 changes: 1 addition & 1 deletion doc/migrate.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrate your adjust SDK for Windows to v4.16.0 from v3.5.1
## Migrate your adjust SDK for Windows to v4.17.0 from v3.5.1

### Initial setup

Expand Down

0 comments on commit 6daa7e6

Please sign in to comment.