Skip to content

Commit a3bfbc6

Browse files
committed
bump version to v0.7.6
set jackson to versions [2.13.1, 2.13.2.2]
1 parent 64d3151 commit a3bfbc6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,13 @@ walletFull.close(true);
113113
<dependency>
114114
<groupId>io.github.monero-ecosystem</groupId>
115115
<artifactId>monero-java</artifactId>
116-
<version>0.7.5</version>
116+
<version>0.7.6</version>
117117
</dependency>
118118
```
119119

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

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

124124
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.
125125

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.github.monero-ecosystem</groupId>
66
<artifactId>monero-java</artifactId>
7-
<version>0.7.5</version>
7+
<version>0.7.6</version>
88
<name>Monero Java Library</name>
99
<description>A Java library for using Monero</description>
1010
<url>https://github.com/monero-ecosystem/monero-java</url>
1111
<properties>
1212
<java-version>1.8</java-version>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414
<apachelog-version>2.11.0</apachelog-version>
15-
<jackson-version>2.13.1</jackson-version>
15+
<jackson-version>[2.13.1, 2.13.2.2]</jackson-version>
1616
<maven.test.skip>true</maven.test.skip>
1717
</properties>
1818

src/main/java/monero/common/MoneroUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class MoneroUtils {
4040
* @return the version of this monero-java library
4141
*/
4242
static String getVersion() {
43-
return "0.7.5";
43+
return "0.7.6";
4444
}
4545

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

0 commit comments

Comments
 (0)