Skip to content

Commit

Permalink
bump version to v0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Aug 21, 2023
1 parent 40c6553 commit 3275540
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ walletFull.close(true);
<dependency>
<groupId>io.github.monero-ecosystem</groupId>
<artifactId>monero-java</artifactId>
<version>0.8.1</version>
<version>0.8.2</version>
</dependency>
```

#### For Gradle, add to build.gradle:

`compile 'io.github.monero-ecosystem:monero-java:0.8.1'`
`compile 'io.github.monero-ecosystem:monero-java:0.8.2'`

You are now ready to use this library with [monerod](https://getmonero.org/resources/developer-guides/daemon-rpc.html) and [monero-wallet-rpc](https://getmonero.org/resources/developer-guides/wallet-rpc.html) endpoints.

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>io.github.monero-ecosystem</groupId>
<artifactId>monero-java</artifactId>
<version>0.8.1</version>
<version>0.8.2</version>
<name>Monero Java Library</name>
<description>A Java library for using Monero</description>
<url>https://github.com/monero-ecosystem/monero-java</url>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/monero/common/MoneroUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class MoneroUtils {
* @return the version of this monero-java library
*/
public static String getVersion() {
return "0.8.1";
return "0.8.2";
}

/**
Expand Down

0 comments on commit 3275540

Please sign in to comment.