Skip to content

Commit 5945abc

Browse files
author
Patrick Jackson
committed
make selectorList public and bump version
1 parent 53a3caa commit 5945abc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ repositories {
44
apply plugin: 'java'
55
apply plugin: 'kotlin-multiplatform'
66

7-
archivesBaseName = 'redux-kotlin-reselect'
7+
archivesBaseName = 'reselect'
88

99
group 'org.reduxkotlin'
10-
version '0.2.7'
10+
version '0.2.8'
1111

1212
kotlin {
1313
jvm()

lib/src/commonMain/kotlin/org/reduxkotlin/SelectorSubscriberBuilder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ package org.reduxkotlin
1010
*/
1111
class SelectorSubscriberBuilder<State : Any>(val store: Store) {
1212

13-
private val selectorList = mutableMapOf<Selector<State, Any>, (Any) -> Unit>()
13+
val selectorList = mutableMapOf<Selector<State, Any>, (Any) -> Unit>()
1414

1515
//state is here to make available to lambda with receiver in DSL
1616
val state: State

0 commit comments

Comments
 (0)