From 22025c61b9e4f013f4d474fba0fcf8ec737bfc0f Mon Sep 17 00:00:00 2001 From: Ian Clarke Date: Fri, 20 Jan 2017 23:48:40 -0600 Subject: [PATCH] really bump version --- build.gradle | 2 +- src/main/kotlin/com/github/sanity/kweb/RootReceiver.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 062f1c2449..9f86599219 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ group 'com.github.sanity' -version '0.0.11' +version '0.0.12' buildscript { ext.kotlin_version = '1.1.0-beta-17' diff --git a/src/main/kotlin/com/github/sanity/kweb/RootReceiver.kt b/src/main/kotlin/com/github/sanity/kweb/RootReceiver.kt index 03b6c010c0..270c1a7a8f 100644 --- a/src/main/kotlin/com/github/sanity/kweb/RootReceiver.kt +++ b/src/main/kotlin/com/github/sanity/kweb/RootReceiver.kt @@ -7,7 +7,7 @@ import kotlin.reflect.KClass import kotlin.reflect.jvm.jvmName class RootReceiver(private val clientId: String, internal val cc: ClientConduit, val response: String? = null) { - private val plugins: Set> by lazy { + private val plugins: Set> by lazy { cc.plugins.map { it::class }.toSet() }