Skip to content

Commit

Permalink
Version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Nov 26, 2023
1 parent cd4d869 commit 705a8d9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions examples/bld/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public CryptoPriceExampleBuild() {
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);

scope(compile)
.include(dependency("net.thauvin.erik", "cryptoprice", version(1, 0, 2, "SNAPSHOT")))
.include(dependency("net.thauvin.erik", "cryptoprice", version(1, 0, 2)))
.include(dependency("org.json", "json", "20231013"));
}

Expand Down
1 change: 1 addition & 0 deletions examples/gradle/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {
}

dependencies {
implementation("net.thauvin.erik:cryptoprice:1.0.1-SNAPSHOT")
implementation("net.thauvin.erik:cryptoprice:1.0.2")
implementation("org.json:json:20231013")
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik</groupId>
<artifactId>cryptoprice</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.0.2</version>
<name>cryptoprice</name>
<description>Retrieve cryptocurrencies prices</description>
<url>https://github.com/ethauvin/cryptoprice</url>
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, "SNAPSHOT");
version = version(1, 0, 2);

mainClass = "net.thauvin.erik.crypto.CryptoPrice";

Expand Down

0 comments on commit 705a8d9

Please sign in to comment.