Skip to content

Commit

Permalink
Upgrade to Kotlin 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaron committed Jul 19, 2023
1 parent e1be5ad commit 278baae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion docs/dokka/roboquant.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<kotlin.code.style>official</kotlin.code.style>
<kotlin.compiler.jvmTarget>11</kotlin.compiler.jvmTarget>
<kotlin.compiler.incremental>true</kotlin.compiler.incremental>
<kotlin.version>1.9.0-RC</kotlin.version>
<kotlin.version>1.9.0</kotlin.version>
<slf4j.version>2.0.7</slf4j.version>
<ibkr.version>10.19</ibkr.version>
<surefire.failIfNoSpecifiedTests>false</surefire.failIfNoSpecifiedTests>
Expand Down Expand Up @@ -347,7 +347,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<configuration>
<propertiesEncoding>ISO-8859-1</propertiesEncoding>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<String, TimeSeries> = emptyMap()

Expand Down

0 comments on commit 278baae

Please sign in to comment.