Skip to content

Commit

Permalink
feat: update version to 24.1.0 (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
arifBurakDemiray committed Jan 16, 2024
1 parent 93e0843 commit b71fcd6
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## XX.XX.XX
## 24.1.0

* New BackendMode features added and accesible through "Countly.Instance.BackendMode()" interface:
* "ChangeDeviceIdWithMerge"
Expand Down
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("23.12.0", baseParams["sdk_version"]);
Assert.Equal("24.1.0", 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 = "23.12.0";
public static string SDK_VERSION = "24.1.0";


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 = "23.12.0";
protected const string sdkVersion = "24.1.0";

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("23.12.0.0")]
[assembly: AssemblyFileVersion("23.12.0.0")]
[assembly: AssemblyVersion("24.1.0.0")]
[assembly: AssemblyFileVersion("24.1.0.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("23.12.0.0")]
[assembly: AssemblyFileVersion("23.12.0.0")]
[assembly: AssemblyVersion("24.1.0.0")]
[assembly: AssemblyFileVersion("24.1.0.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>23.12.0.0</AssemblyVersion>
<AssemblyVersion>24.1.0.0</AssemblyVersion>
<Copyright>Copyright © Countly 2022</Copyright>
<FileVersion>23.12.0.0</FileVersion>
<Version>23.12.0</Version>
<FileVersion>24.1.0.0</FileVersion>
<Version>24.1.0</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>23.12.0</version>
<version>24.1.0</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 b71fcd6

Please sign in to comment.