Skip to content

Commit

Permalink
bump version to v0.7.6
Browse files Browse the repository at this point in the history
set jackson to versions [2.13.1, 2.13.2.2]
  • Loading branch information
woodser committed Oct 13, 2022
1 parent 64d3151 commit a3bfbc6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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.7.5</version>
<version>0.7.6</version>
</dependency>
```

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

`compile 'io.github.monero-ecosystem:monero-java:0.7.5'`
`compile 'io.github.monero-ecosystem:monero-java:0.7.6'`

You are now ready to use this library with [monero-daemon-rpc](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
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.monero-ecosystem</groupId>
<artifactId>monero-java</artifactId>
<version>0.7.5</version>
<version>0.7.6</version>
<name>Monero Java Library</name>
<description>A Java library for using Monero</description>
<url>https://github.com/monero-ecosystem/monero-java</url>
<properties>
<java-version>1.8</java-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<apachelog-version>2.11.0</apachelog-version>
<jackson-version>2.13.1</jackson-version>
<jackson-version>[2.13.1, 2.13.2.2]</jackson-version>
<maven.test.skip>true</maven.test.skip>
</properties>

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 @@ -40,7 +40,7 @@ public class MoneroUtils {
* @return the version of this monero-java library
*/
static String getVersion() {
return "0.7.5";
return "0.7.6";
}

public static final int RING_SIZE = 12; // network-enforced ring size
Expand Down

0 comments on commit a3bfbc6

Please sign in to comment.