Initial 0.9.0 release cleanup.

This commit is contained in:
Erik C. Thauvin 2022-01-18 17:16:43 -08:00
parent 39251ca967
commit c8fe346320
5 changed files with 7 additions and 7 deletions

View file

@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("application")
id("com.github.ben-manes.versions") version "0.40.0"
id("com.github.ben-manes.versions") version "0.41.0"
kotlin("jvm") version "1.6.10"
}
@ -20,7 +20,7 @@ repositories {
}
dependencies {
implementation("net.thauvin.erik:cryptoprice:0.9.0-SNAPSHOT")
implementation("net.thauvin.erik:cryptoprice:0.9.0")
}
java {

View file

@ -21,7 +21,7 @@ fun main(args: Array<String>) {
// Get current Ethereum spot price in Pound sterling.
val gbpPrice = spotPrice("ETH", "GBP")
println("The current Ehtereum price is ${gbpPrice.toCurrency()}")
println("The current Ethereum price is ${gbpPrice.toCurrency()}")
// Get current Litecoin spot price in Euro.
val euroPrice = spotPrice("LTC", "EUR")