You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix android crashing related to okhttp3 ([#457](https://github.com/stellar/java-stellar-sdk/pull/457))
14
+
15
+
## 0.37.2
16
+
17
+
* Fix the deployment CI that uploads the jar to the GitHub release [2]. ([#453](https://github.com/stellar/java-stellar-sdk/pull/453))
18
+
19
+
## 0.37.1
20
+
21
+
* Fix the deployment CI that uploads the jar to the GitHub release. ([#452](https://github.com/stellar/java-stellar-sdk/pull/452))
22
+
23
+
## 0.37.0
24
+
25
+
* Fix missing `auth_clawback_enabled` field in AccountResponse class. ([#449](https://github.com/stellar/java-stellar-sdk/pull/449))
26
+
27
+
## 0.36.0
28
+
29
+
* Fix bug in `KeyPair.fromSecretSeed(char[] seed)`. ([#447](https://github.com/stellar/java-stellar-sdk/pull/447))
30
+
* Shade kotlin dependencies to prevent 'Duplicate class' errors. ([#448](https://github.com/stellar/java-stellar-sdk/pull/448))
31
+
32
+
## 0.35.0
33
+
34
+
* Update JDK compatibility version from Java 1.6 to Java 1.8 and bump the version of few libraries ([#444](https://github.com/stellar/java-stellar-sdk/pull/444)):
35
+
* com.squareup.okhttp3 from `v3.11.0` to `v4.10.0`.
36
+
* commons-io:commons-io from `v2.6` to `v2.11.0`.
37
+
* junit:junit from `v4.12` to `v4.13.2`.
38
+
* org.threeten:threetenbp from `v1.4.4` to `v1.6.0`.
39
+
* org.mockito:mockito-core from `v2.21.0` to `v4.6.1`.
40
+
* javax.xml.bind:jaxb-api from `v2.3.0` to `v2.3.1`.
41
+
42
+
## 0.34.2
43
+
44
+
* Bump gson version from `v2.8.5` to `v2.9.0`. ([#443](https://github.com/stellar/java-stellar-sdk/pull/443))
45
+
46
+
## 0.34.1
47
+
48
+
* Fix the `Sep10Challenge.verifyTransactionSignatures` method to handle/ignore signers that are not ed25519 compliant. ([#440](https://github.com/stellar/java-stellar-sdk/pull/440))
49
+
50
+
## 0.34.0
51
+
* Add memo to `Sep10Challenge.newChallenge()` and `Sep10Challenge.readChallengeTransaction`. ([#435](https://github.com/stellar/java-stellar-sdk/pull/435))
52
+
53
+
## 0.33.0
54
+
* Update TransactionResponse to include new Protocol 19 Preconditions ([#428](https://github.com/stellar/java-stellar-sdk/pull/428)).
55
+
* Fix asset compare to when asset code are equals ([#424](https://github.com/stellar/java-stellar-sdk/pull/424)).
56
+
* LiquidityPoolIDDeserializer is missing from the PageDeserializer. ([#422](https://github.com/stellar/java-stellar-sdk/pull/422))
Copy file name to clipboardExpand all lines: src/main/java/org/stellar/sdk/Memo.java
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,5 @@
1
1
packageorg.stellar.sdk;
2
2
3
-
importcom.google.common.io.BaseEncoding;
4
-
5
3
/**
6
4
* <p>The memo contains optional extra information. It is the responsibility of the client to interpret this value. Memos can be one of the following types:</p>
7
5
* <ul>
@@ -76,8 +74,7 @@ public static MemoReturnHash returnHash(byte[] bytes) {
0 commit comments