-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from kryptokrauts/dev
publish release v1.0.1
- Loading branch information
Showing
13 changed files
with
78 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Release notes ([v1.0.1](https://github.com/kryptokrauts/aepp-sdk-java/releases/tag/v1.0.1)) | ||
|
||
## Changes | ||
|
||
- return Single instead of Observable for responses that return only one object | ||
- switch from bouncycastle 1.61-beta to the release version (no more need to manually add it) | ||
|
||
## Contributors | ||
|
||
Everybody is welcome to contribute to this project. Following people contributed to this release: | ||
|
||
- [Marco Walz](https://github.com/marc0olo) | ||
- [Michel Meier](https://github.com/mitch-lbw) | ||
|
||
## Support us | ||
|
||
If you like this project we would appreciate your support. | ||
|
||
- [ak_5z1fmzTKR1GA1P7qiLDCC1s3V7AK2RRpNbXqUhfHQbUeg7mmV](https://explorer.aepps.com/#/account/ak_5z1fmzTKR1GA1P7qiLDCC1s3V7AK2RRpNbXqUhfHQbUeg7mmV) | ||
|
||
![ak_5z1fmzTKR1GA1P7qiLDCC1s3V7AK2RRpNbXqUhfHQbUeg7mmV](../../donations.png) | ||
|
||
(QR-code generated with https://cwaqrgen.com/aeternity) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
organization=kryptokrauts | ||
group=com.kryptokrauts | ||
name=aepp-sdk-java | ||
version=1.0.0-SNAPSHOT | ||
version=1.0.1-SNAPSHOT |
Binary file not shown.
16 changes: 7 additions & 9 deletions
16
src/integrationTest/java/com/kryptokrauts/aeternity/generated/api/ChainApiTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
src/main/java/com/kryptokrauts/aeternity/sdk/service/chain/ChainService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
package com.kryptokrauts.aeternity.sdk.service.chain; | ||
|
||
import com.kryptokrauts.aeternity.generated.model.KeyBlock; | ||
|
||
import io.reactivex.Observable; | ||
import io.reactivex.Single; | ||
|
||
public interface ChainService { | ||
|
||
public Observable<KeyBlock> getCurrentKeyBlock(); | ||
Single<KeyBlock> getCurrentKeyBlock(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters