Skip to content

Commit c9c640b

Browse files
[release] 1.13.1 - Multi instances, network requests improvements (#237)
Improvements: - Make `options`(e.g. `CheckGateOptions`) parameters in Sync version of core apis optional for multiple StatsigServer instances. - Log details if the network request failed. >Included In This Release >- 0516548 weihao-statsig > - Make`options` parameter optional for multi-instance (#236) >- 850b33b weihao-statsig > - Log more if network request failed (#233)
1 parent 0516548 commit c9c640b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RELEASE_SIGNING_ENABLED=true
66

77
GROUP=com.statsig.serversdk
88
POM_ARTIFACT_ID=serversdk
9-
VERSION_NAME=1.13.0
9+
VERSION_NAME=1.13.1
1010

1111
POM_NAME=Statsig Server SDK
1212
POM_DESCRIPTION=A feature gating and a/b testing library for statsig

src/main/kotlin/com/statsig/sdk/StatsigMetadata.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import com.google.gson.annotations.SerializedName
66
import java.util.Properties
77
import java.util.UUID
88

9-
private const val VERSION = "1.13.0"
9+
private const val VERSION = "1.13.1"
1010

1111
internal data class StatsigMetadata(@SerializedName("sdkType") var sdkType: String = "java-server", @SerializedName("sessionID") var sessionID: String = UUID.randomUUID().toString(), @SerializedName("languageVersion") var languageVersion: String = System.getProperty("java.version"), @SerializedName("exposureLoggingDisabled") var exposureLoggingDisabled: Boolean? = null) {
1212
@SerializedName("sdkVersion")

0 commit comments

Comments
 (0)