From 278baae4862c2639d98c4085ba087aebfa2abbd9 Mon Sep 17 00:00:00 2001 From: Peter Dekkers Date: Wed, 19 Jul 2023 10:16:39 +0200 Subject: [PATCH] Upgrade to Kotlin 1.9.0 --- docs/dokka/roboquant.md | 3 ++- pom.xml | 4 ++-- .../src/main/kotlin/org/roboquant/loggers/MetricsLogger.kt | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/dokka/roboquant.md b/docs/dokka/roboquant.md index d37cd18f8..99e00c8ea 100644 --- a/docs/dokka/roboquant.md +++ b/docs/dokka/roboquant.md @@ -2,7 +2,8 @@ The roboquant module contains the core functionality required to create trading strategies and run them. -This module doesn't contain the integration with 3rd party data providers and brokers. For this, see the roboquant-extra and roboquant-crypto modules. +This module doesn't contain the integration with 3rd party data providers and brokers. +For this, see the roboquant-extra and roboquant-crypto modules. # Package org.roboquant.feeds diff --git a/pom.xml b/pom.xml index b352dec3c..f63cc144c 100644 --- a/pom.xml +++ b/pom.xml @@ -66,7 +66,7 @@ official 11 true - 1.9.0-RC + 1.9.0 2.0.7 10.19 false @@ -347,7 +347,7 @@ org.apache.maven.plugins maven-resources-plugin - 3.3.0 + 3.3.1 ISO-8859-1 diff --git a/roboquant/src/main/kotlin/org/roboquant/loggers/MetricsLogger.kt b/roboquant/src/main/kotlin/org/roboquant/loggers/MetricsLogger.kt index f46b7040b..aaadb2eae 100644 --- a/roboquant/src/main/kotlin/org/roboquant/loggers/MetricsLogger.kt +++ b/roboquant/src/main/kotlin/org/roboquant/loggers/MetricsLogger.kt @@ -42,8 +42,8 @@ interface MetricsLogger : Lifecycle { * Get all the logged data for a specific metric identified by its [name]. * The result is a Map with the key being the run-name and the value being the [TimeSeries]. * - * This is optional to implement for a MetricsLogger since not all metric-loggers store metrics. Use [metricNames] - * to see which metrics are available. + * This is optional to implement for a MetricsLogger since not all metric-loggers store metrics. + * Use [metricNames] to see which metrics are available. */ fun getMetric(name: String): Map = emptyMap()