Skip to content

Commit 64eddc0

Browse files
committed
Setting release version and updating changelog
1 parent 9f821f0 commit 64eddc0

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 23.8.1
2+
* Adding an additional testing call for retrieving AB test experiment information
3+
14
## 23.8.0
25
* ! Minor breaking change ! Manual view recording calls are now ignored when in automatic view recording mode.
36
* ! Minor breaking change ! If a manual session is already started, it will not be possible to call "BeginSession" without stopping the previous one

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ org.gradle.configureondemand=true
2222
android.useAndroidX=true
2323
android.enableJetifier=true
2424
# RELEASE FIELD SECTION
25-
VERSION_NAME=23.8.1-RC1
25+
VERSION_NAME=23.8.1
2626
GROUP=ly.count.android
2727
POM_URL=https://github.com/Countly/countly-sdk-android
2828
POM_SCM_URL=https://github.com/Countly/countly-sdk-android

sdk/src/androidTest/java/ly/count/android/sdk/ConnectionQueueTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ public void testPrepareCommonRequest() {
502502
break;
503503
case "sdk_version":
504504
if (a == 0) {
505-
Assert.assertTrue(pair[1].equals("23.8.1-RC1"));
505+
Assert.assertTrue(pair[1].equals("23.8.1"));
506506
} else if (a == 1) {
507507
Assert.assertTrue(pair[1].equals("123sdf.v-213"));
508508
}

sdk/src/main/java/ly/count/android/sdk/Countly.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ of this software and associated documentation files (the "Software"), to deal
4949
*/
5050
public class Countly {
5151

52-
private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "23.8.1-RC1";
52+
private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "23.8.1";
5353

5454
/**
5555
* Used as request meta data on every request

0 commit comments

Comments
 (0)