diff --git a/README.md b/README.md index 1c583ed..ffac360 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ To use with [bld](https://rife2.com/bld), include the following dependency in yo repositories = List.of(MAVEN_CENTRAL); scope(compile) - .include(dependency("net.thauvin.erik:cryptoprice:1.0.1")); + .include(dependency("net.thauvin.erik:cryptoprice:1.0.2")); ``` Be sure to use the [bld Kotlin extension](https://github.com/rife2/bld-kotlin) in your project. @@ -54,7 +54,7 @@ repositories { } dependencies { - implementation("net.thauvin.erik:cryptoprice:1.0.1") + implementation("net.thauvin.erik:cryptoprice:1.0.2") } ``` diff --git a/src/bld/java/net/thauvin/erik/crypto/CryptoPriceBuild.java b/src/bld/java/net/thauvin/erik/crypto/CryptoPriceBuild.java index 6ef35e9..764140d 100644 --- a/src/bld/java/net/thauvin/erik/crypto/CryptoPriceBuild.java +++ b/src/bld/java/net/thauvin/erik/crypto/CryptoPriceBuild.java @@ -27,7 +27,7 @@ public class CryptoPriceBuild extends Project { public CryptoPriceBuild() { pkg = "net.thauvin.erik.crypto"; name = "cryptoprice"; - version = version(1, 0, 2); + version = version(1, 0, 3, "SNAPSHOT"); mainClass = "net.thauvin.erik.crypto.CryptoPrice";