From c60da7147c2cf6ac970ada51c922dd0d305743a9 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sat, 23 Sep 2023 11:19:13 -0700 Subject: [PATCH] Version 1.0.1 --- README.md | 6 +++--- build.gradle.kts | 2 +- examples/build.gradle.kts | 2 +- pom.xml | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 737e4c1..ed92e08 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](https://opensource.org/licenses/BSD-3-Clause) -[![Kotlin](https://img.shields.io/badge/kotlin-1.8-7f52ff)](https://kotlinlang.org/) +[![Kotlin](https://img.shields.io/badge/kotlin-1.9.10-7f52ff)](https://kotlinlang.org/) [![Nexus Snapshot](https://img.shields.io/nexus/s/net.thauvin.erik/cryptoprice?label=snapshot&server=https%3A%2F%2Foss.sonatype.org%2F)](https://oss.sonatype.org/content/repositories/snapshots/net/thauvin/erik/cryptoprice/) [![Release](https://img.shields.io/github/release/ethauvin/cryptoprice.svg)](https://github.com/ethauvin/cryptoprice/releases/latest) [![Maven Central](https://img.shields.io/maven-central/v/net.thauvin.erik/cryptoprice)](https://central.sonatype.com/artifact/net.thauvin.erik/cryptoprice) @@ -42,11 +42,11 @@ repositories { } dependencies { - implementation("net.thauvin.erik:cryptoprice:1.0.0") + implementation("net.thauvin.erik:cryptoprice:1.0.1") } ``` -Instructions for using with Maven, Ivy, etc. can be found on [Maven Central](https://maven-badges.herokuapp.com/maven-central/net.thauvin.erik/cryptoprice). +Instructions for using with Maven, Ivy, etc. can be found on [Maven Central](https://central.sonatype.com/artifact/net.thauvin.erik/cryptoprice). ### Prices diff --git a/build.gradle.kts b/build.gradle.kts index 51e2407..a4ae3cd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -22,7 +22,7 @@ defaultTasks(ApplicationPlugin.TASK_RUN_NAME) description = "Retrieve cryptocurrencies prices" group = "net.thauvin.erik" -version = "1.0.1-SNAPSHOT" +version = "1.0.1" val deployDir = "deploy" val gitHub = "ethauvin/$name" diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts index bc160d1..1ff1bee 100644 --- a/examples/build.gradle.kts +++ b/examples/build.gradle.kts @@ -20,7 +20,7 @@ repositories { } dependencies { - implementation("net.thauvin.erik:cryptoprice:1.0.1-SNAPSHOT") + implementation("net.thauvin.erik:cryptoprice:1.0.1") implementation("org.json:json:20230618") } diff --git a/pom.xml b/pom.xml index cffbd18..3deee5d 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ 4.0.0 net.thauvin.erik cryptoprice - 1.0.1-SNAPSHOT + 1.0.1 cryptoprice Retrieve cryptocurrencies prices https://github.com/ethauvin/cryptoprice @@ -40,7 +40,7 @@ org.jetbrains.kotlin kotlin-bom - 1.8.22 + 1.9.10 pom import @@ -50,7 +50,7 @@ org.jetbrains.kotlin kotlin-stdlib-jdk8 - 1.8.22 + 1.9.10 runtime