Skip to content

Commit d3b8579

Browse files
authored
Merge pull request #91 from statsig-io/make-layer-fields-public
make some layer fields public
2 parents 125f2cc + f198e8d commit d3b8579

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
kotlin.code.style=official
2-
version=0.16.2
2+
version=0.17.0

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ class Layer internal constructor(
1212
val name: String,
1313
val ruleID: String? = null,
1414
val value: Map<String, Any>,
15-
private val secondaryExposures: ArrayList<Map<String, String>> = arrayListOf(),
16-
private val allocatedExperiment: String = "",
15+
val secondaryExposures: ArrayList<Map<String, String>> = arrayListOf(),
16+
val allocatedExperiment: String = "",
1717
private val onExposure: OnLayerExposureInternal? = null
1818
) {
1919

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package com.statsig.sdk
22

33
import java.util.Properties
44

5-
private const val VERSION = "0.16.2"
5+
private const val VERSION = "0.17.0"
66

77
internal class StatsigMetadata {
88
companion object {

0 commit comments

Comments
 (0)