Skip to content

Commit 2ec9fa3

Browse files
[Java] update version to 23.10.0 (#164)
* fix: update version * fix: changelog entry * fix: line ending
1 parent 41a5233 commit 2ec9fa3

File tree

7 files changed

+45
-45
lines changed

7 files changed

+45
-45
lines changed

.idea/modules/sdk-java/countly-sdk-java.sdk-java.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/sdk-java/countly-sdk-java.sdk-java.main.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/sdk-java/countly-sdk-java.sdk-java.test.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
}
2121

2222
allprojects {
23-
ext.CLY_VERSION = "23.8.0"
23+
ext.CLY_VERSION = "23.10.0"
2424
ext.POWERMOCK_VERSION = "1.7.4"
2525

2626
tasks.withType(Javadoc) {

gradle.properties

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
# Project-wide Gradle settings.
2-
3-
# IDE (e.g. Android Studio) users:
4-
# Gradle settings configured through the IDE *will override*
5-
# any settings specified in this file.
6-
7-
# For more details on how to configure your build environment visit
8-
# http://www.gradle.org/docs/current/userguide/build_environment.html
9-
10-
# Specifies the JVM arguments used for the daemon process.
11-
# The setting is particularly useful for tweaking memory settings.
12-
# Default value: -Xmx10248m -XX:MaxPermSize=256m
13-
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14-
15-
# When configured, Gradle will run in incubating parallel mode.
16-
# This option should only be used with decoupled projects. More details, visit
17-
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18-
# org.gradle.parallel=true
19-
20-
# RELEASE FIELD SECTION
21-
VERSION_NAME=23.8.0
22-
GROUP=ly.count.sdk
23-
24-
POM_URL=https://github.com/Countly/countly-sdk-java
25-
POM_SCM_URL=https://github.com/Countly/countly-sdk-java
26-
27-
POM_LICENCE_NAME=MIT License
28-
POM_LICENCE_URL=http://www.opensource.org/licenses/mit-license.php
29-
POM_LICENCE_DIST=repo
30-
31-
POM_DEVELOPER_NAME=Countly
32-
33-
#SIGNING SECTION
34-
signing.keyId=xx
35-
signing.password=xx
36-
signing.secretKeyRingFile=xx
37-
38-
mavenCentralUsername=xx
39-
mavenCentralPassword=xx
1+
# Project-wide Gradle settings.
2+
3+
# IDE (e.g. Android Studio) users:
4+
# Gradle settings configured through the IDE *will override*
5+
# any settings specified in this file.
6+
7+
# For more details on how to configure your build environment visit
8+
# http://www.gradle.org/docs/current/userguide/build_environment.html
9+
10+
# Specifies the JVM arguments used for the daemon process.
11+
# The setting is particularly useful for tweaking memory settings.
12+
# Default value: -Xmx10248m -XX:MaxPermSize=256m
13+
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14+
15+
# When configured, Gradle will run in incubating parallel mode.
16+
# This option should only be used with decoupled projects. More details, visit
17+
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18+
# org.gradle.parallel=true
19+
20+
# RELEASE FIELD SECTION
21+
VERSION_NAME=23.10.0
22+
GROUP=ly.count.sdk
23+
24+
POM_URL=https://github.com/Countly/countly-sdk-java
25+
POM_SCM_URL=https://github.com/Countly/countly-sdk-java
26+
27+
POM_LICENCE_NAME=MIT License
28+
POM_LICENCE_URL=http://www.opensource.org/licenses/mit-license.php
29+
POM_LICENCE_DIST=repo
30+
31+
POM_DEVELOPER_NAME=Countly
32+
33+
#SIGNING SECTION
34+
signing.keyId=xx
35+
signing.password=xx
36+
signing.secretKeyRingFile=xx
37+
38+
mavenCentralUsername=xx
39+
mavenCentralPassword=xx

sdk-java/src/main/java/ly/count/sdk/java/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ public String toString() {
197197
/**
198198
* Countly SDK version to be sent in HTTP requests
199199
*/
200-
protected String sdkVersion = "23.8.0";
200+
protected String sdkVersion = "23.10.0";
201201

202202
/**
203203
* Countly SDK version to be sent in HTTP requests

sdk-java/src/test/java/ly/count/sdk/java/internal/TestUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class TestUtils {
3636
static String SERVER_APP_KEY = "COUNTLY_APP_KEY";
3737
static String DEVICE_ID = "some_random_test_device_id";
3838
static String SDK_NAME = "java-native";
39-
static String SDK_VERSION = "23.8.0";
39+
static String SDK_VERSION = "23.10.0";
4040
static String APPLICATION_VERSION = "1.0";
4141

4242
public static final String[] eKeys = new String[] { "eventKey1", "eventKey2", "eventKey3", "eventKey4", "eventKey5", "eventKey6", "eventKey7" };

0 commit comments

Comments
 (0)