Skip to content

Commit

Permalink
Merge pull request #141 from Countly/24_1_1
Browse files Browse the repository at this point in the history
feat: minor version 24.1.1
  • Loading branch information
turtledreams authored Jul 26, 2024
2 parents 9969246 + 7d60a9c commit 2b64ce5
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion countlyCommon/TestingRelated/RequestTestCases.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public async void ValidateBaseRequestParams()

Assert.Equal("YOUR_APP_KEY", baseParams["app_key"]);
Assert.Equal("test device id", baseParams["device_id"]);
Assert.Equal("24.1.0", baseParams["sdk_version"]);
Assert.Equal("24.1.1", baseParams["sdk_version"]);
Assert.Equal(0, baseParams["t"]);
Assert.Equal("1.0", baseParams["av"]);

Expand Down
2 changes: 1 addition & 1 deletion countlyCommon/TestingRelated/TestHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ internal class TestHelper
public static string SERVER_URL = "https://domin.com";
public static string APP_VERSION = "1.0";
public static string DEVICE_ID = "TEST_DEVICE_ID";
public static string SDK_VERSION = "24.1.0";
public static string SDK_VERSION = "24.1.1";


public static BeginSession CreateBeginSession(int indexData, int indexMetrics, TimeInstant timeInstant)
Expand Down
2 changes: 1 addition & 1 deletion countlyCommon/countlyCommon/CountlyBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public string GetAppVersion()
}

// Current version of the Count.ly SDK as a displayable string.
protected const string sdkVersion = "24.1.0";
protected const string sdkVersion = "24.1.1";

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

Expand Down
4 changes: 2 additions & 2 deletions net35/Countly/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
// 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("24.1.0.0")]
[assembly: AssemblyFileVersion("24.1.0.0")]
[assembly: AssemblyVersion("24.1.1.0")]
[assembly: AssemblyFileVersion("24.1.1.0")]

//[assembly: InternalsVisibleTo("CountlySample")]
4 changes: 2 additions & 2 deletions net45/Countly/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,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("24.1.0.0")]
[assembly: AssemblyFileVersion("24.1.0.0")]
[assembly: AssemblyVersion("24.1.1.0")]
[assembly: AssemblyFileVersion("24.1.1.0")]
6 changes: 3 additions & 3 deletions netstd/Countly/Countly.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Description>Countly Windows SDK targeting net standard 2.0</Description>
<Product>Countly SDK</Product>
<AssemblyVersion>24.1.0.0</AssemblyVersion>
<AssemblyVersion>24.1.1.0</AssemblyVersion>
<Copyright>Copyright © Countly 2022</Copyright>
<FileVersion>24.1.0.0</FileVersion>
<Version>24.1.0</Version>
<FileVersion>24.1.1.0</FileVersion>
<Version>24.1.1</Version>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>CountlyWinSDKStrongNameKey.pfx</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
Expand Down
2 changes: 1 addition & 1 deletion nuget/Countly.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Countly</id>
<version>24.1.0</version>
<version>24.1.1</version>
<title>Countly Analytics</title>
<authors>Countly</authors>
<iconUrl>https://raw.githubusercontent.com/Countly/countly-sdk-windows/master/icon.png</iconUrl>
Expand Down

0 comments on commit 2b64ce5

Please sign in to comment.