Skip to content

Commit 76f4871

Browse files
authored
Merge pull request #151 from Countly/2542
feat: 25.4.2
2 parents ca886d1 + 271ff89 commit 76f4871

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

countlyCommon/TestingRelated/RequestTestCases.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public async void ValidateBaseRequestParams()
6464

6565
Assert.Equal("YOUR_APP_KEY", baseParams["app_key"]);
6666
Assert.Equal("test device id", baseParams["device_id"]);
67-
Assert.Equal("25.4.1", baseParams["sdk_version"]);
67+
Assert.Equal("25.4.2", baseParams["sdk_version"]);
6868
Assert.Equal(0, baseParams["t"]);
6969
Assert.Equal("1.0", baseParams["av"]);
7070

countlyCommon/TestingRelated/TestHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ internal class TestHelper
3838
public static string SERVER_URL = "https://domin.com";
3939
public static string APP_VERSION = "1.0";
4040
public static string DEVICE_ID = "TEST_DEVICE_ID";
41-
public static string SDK_VERSION = "25.4.1";
41+
public static string SDK_VERSION = "25.4.2";
4242

4343

4444
public static BeginSession CreateBeginSession(int indexData, int indexMetrics, TimeInstant timeInstant)

countlyCommon/countlyCommon/CountlyBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public string GetAppVersion()
5353
}
5454

5555
// Current version of the Count.ly SDK as a displayable string.
56-
protected const string sdkVersion = "25.4.1";
56+
protected const string sdkVersion = "25.4.2";
5757

5858
public enum LogLevel { VERBOSE, DEBUG, INFO, WARNING, ERROR };
5959

net35/Countly/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("25.4.1.0")]
35-
[assembly: AssemblyFileVersion("25.4.1.0")]
34+
[assembly: AssemblyVersion("25.4.2.0")]
35+
[assembly: AssemblyFileVersion("25.4.2.0")]
3636

3737
//[assembly: InternalsVisibleTo("CountlySample")]

net45/Countly/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("25.4.1.0")]
35-
[assembly: AssemblyFileVersion("25.4.1.0")]
34+
[assembly: AssemblyVersion("25.4.2.0")]
35+
[assembly: AssemblyFileVersion("25.4.2.0")]

netstd/Countly/Countly.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Description>Countly Windows SDK targeting net standard 2.0</Description>
66
<Product>Countly SDK</Product>
7-
<AssemblyVersion>25.4.1.0</AssemblyVersion>
7+
<AssemblyVersion>25.4.2.0</AssemblyVersion>
88
<Copyright>Copyright © Countly 2022</Copyright>
9-
<FileVersion>25.4.1.0</FileVersion>
10-
<Version>25.4.1</Version>
9+
<FileVersion>25.4.2.0</FileVersion>
10+
<Version>25.4.2</Version>
1111
<SignAssembly>True</SignAssembly>
1212
<AssemblyOriginatorKeyFile>CountlyWinSDKStrongNameKey.pfx</AssemblyOriginatorKeyFile>
1313
<DelaySign>false</DelaySign>

nuget/Countly.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>Countly</id>
5-
<version>25.4.1</version>
5+
<version>25.4.2</version>
66
<title>Countly Analytics</title>
77
<authors>Countly</authors>
88
<iconUrl>https://raw.githubusercontent.com/Countly/countly-sdk-windows/master/icon.png</iconUrl>

0 commit comments

Comments
 (0)