Skip to content

Commit

Permalink
Updated version in README
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Nov 26, 2023
1 parent 705a8d9 commit 3ba6479
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -54,7 +54,7 @@ repositories {
}
dependencies {
implementation("net.thauvin.erik:cryptoprice:1.0.1")
implementation("net.thauvin.erik:cryptoprice:1.0.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion src/bld/java/net/thauvin/erik/crypto/CryptoPriceBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down

0 comments on commit 3ba6479

Please sign in to comment.