Skip to content

Commit

Permalink
[Java] update version to 23.10.0 (#164)
Browse files Browse the repository at this point in the history
* fix: update version

* fix: changelog entry

* fix: line ending
  • Loading branch information
arifBurakDemiray authored Nov 10, 2023
1 parent 41a5233 commit 2ec9fa3
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 45 deletions.
2 changes: 1 addition & 1 deletion .idea/modules/sdk-java/countly-sdk-java.sdk-java.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules/sdk-java/countly-sdk-java.sdk-java.main.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules/sdk-java/countly-sdk-java.sdk-java.test.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ buildscript {
}

allprojects {
ext.CLY_VERSION = "23.8.0"
ext.CLY_VERSION = "23.10.0"
ext.POWERMOCK_VERSION = "1.7.4"

tasks.withType(Javadoc) {
Expand Down
78 changes: 39 additions & 39 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

# RELEASE FIELD SECTION
VERSION_NAME=23.8.0
GROUP=ly.count.sdk

POM_URL=https://github.com/Countly/countly-sdk-java
POM_SCM_URL=https://github.com/Countly/countly-sdk-java

POM_LICENCE_NAME=MIT License
POM_LICENCE_URL=http://www.opensource.org/licenses/mit-license.php
POM_LICENCE_DIST=repo

POM_DEVELOPER_NAME=Countly

#SIGNING SECTION
signing.keyId=xx
signing.password=xx
signing.secretKeyRingFile=xx

mavenCentralUsername=xx
mavenCentralPassword=xx
# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

# RELEASE FIELD SECTION
VERSION_NAME=23.10.0
GROUP=ly.count.sdk

POM_URL=https://github.com/Countly/countly-sdk-java
POM_SCM_URL=https://github.com/Countly/countly-sdk-java

POM_LICENCE_NAME=MIT License
POM_LICENCE_URL=http://www.opensource.org/licenses/mit-license.php
POM_LICENCE_DIST=repo

POM_DEVELOPER_NAME=Countly

#SIGNING SECTION
signing.keyId=xx
signing.password=xx
signing.secretKeyRingFile=xx

mavenCentralUsername=xx
mavenCentralPassword=xx
2 changes: 1 addition & 1 deletion sdk-java/src/main/java/ly/count/sdk/java/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public String toString() {
/**
* Countly SDK version to be sent in HTTP requests
*/
protected String sdkVersion = "23.8.0";
protected String sdkVersion = "23.10.0";

/**
* Countly SDK version to be sent in HTTP requests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class TestUtils {
static String SERVER_APP_KEY = "COUNTLY_APP_KEY";
static String DEVICE_ID = "some_random_test_device_id";
static String SDK_NAME = "java-native";
static String SDK_VERSION = "23.8.0";
static String SDK_VERSION = "23.10.0";
static String APPLICATION_VERSION = "1.0";

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

0 comments on commit 2ec9fa3

Please sign in to comment.