Skip to content

Commit

Permalink
Prepare for v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
acktsap committed Nov 27, 2019
1 parent d8d03aa commit 98b10e4
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -11,13 +11,13 @@ This repository, heraj is java implementation for hera.

## Latest

v1.2.2
v1.3.0

build with aergo-protobuf [c6fff9185d4d06a425f4ad254edd0f73d4a31c84](https://github.com/aergoio/aergo-protobuf/commits/c6fff9185d4d06a425f4ad254edd0f73d4a31c84)
build with aergo-protobuf [38d6a4fce32395997efbd66d0c61edab55c8e4a2](https://github.com/aergoio/aergo-protobuf/commits/38d6a4fce32395997efbd66d0c61edab55c8e4a2)

## Compatibility

* Aergo : v1.3.x
* Aergo : v2.0.x
* Java : JDK 7 or higher
* Android : Android 3.0 (API 11) or higher

Expand Down
Expand Up @@ -4,9 +4,13 @@

package hera.contract;

import hera.annotation.ApiAudience;
import hera.annotation.ApiStability;
import hera.api.model.Fee;
import hera.wallet.WalletApi;

@ApiAudience.Public
@ApiStability.Unstable
public interface ContractApi<ContractT> {

/**
Expand Down
Expand Up @@ -9,6 +9,7 @@
import hera.api.model.AccountTotalVote;
import hera.api.model.StakeInfo;

@Deprecated
public interface AccountHoldable {

/**
Expand Down
1 change: 1 addition & 0 deletions client/wallet/src/main/java/hera/wallet/KeyManageable.java
Expand Up @@ -11,6 +11,7 @@
import java.io.Closeable;
import java.util.List;

@Deprecated
public interface KeyManageable extends Closeable {

/**
Expand Down
2 changes: 1 addition & 1 deletion client/wallet/src/main/java/hera/wallet/LegacyWallet.java
Expand Up @@ -56,7 +56,7 @@

/**
* Legacy wallet with poor interfaces. I hacked some apis of WalletApi to keep behaviors of legacy
* wallet. Remove after removing account interface.
* wallet. Remove after account interface is removed.
*
* @author taeiklim
*
Expand Down
4 changes: 4 additions & 0 deletions client/wallet/src/main/java/hera/wallet/QueryApi.java
Expand Up @@ -4,6 +4,8 @@

package hera.wallet;

import hera.annotation.ApiAudience;
import hera.annotation.ApiStability;
import hera.api.model.AccountAddress;
import hera.api.model.AccountState;
import hera.api.model.AccountTotalVote;
Expand Down Expand Up @@ -33,6 +35,8 @@
import hera.api.model.TxHash;
import java.util.List;

@ApiAudience.Public
@ApiStability.Unstable
public interface QueryApi {

/**
Expand Down
4 changes: 4 additions & 0 deletions client/wallet/src/main/java/hera/wallet/TransactionApi.java
Expand Up @@ -4,6 +4,8 @@

package hera.wallet;

import hera.annotation.ApiAudience;
import hera.annotation.ApiStability;
import hera.api.model.AccountAddress;
import hera.api.model.Aer;
import hera.api.model.BytesValue;
Expand All @@ -17,6 +19,8 @@
import hera.api.model.TxHash;
import java.util.List;

@ApiAudience.Public
@ApiStability.Unstable
public interface TransactionApi {

/**
Expand Down
4 changes: 4 additions & 0 deletions client/wallet/src/main/java/hera/wallet/WalletApi.java
Expand Up @@ -4,6 +4,8 @@

package hera.wallet;

import hera.annotation.ApiAudience;
import hera.annotation.ApiStability;
import hera.api.model.AccountAddress;
import hera.api.model.Authentication;
import hera.client.AergoClient;
Expand All @@ -17,6 +19,8 @@
* @author taeiklim
*
*/
@ApiAudience.Public
@ApiStability.Unstable
public interface WalletApi extends Signer {

/**
Expand Down
3 changes: 3 additions & 0 deletions client/wallet/src/main/java/hera/wallet/WalletFactory.java
Expand Up @@ -4,6 +4,9 @@

package hera.wallet;

/**
* Use {@link WalletApiFactory} instead.
*/
@Deprecated
public class WalletFactory {

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,6 +1,6 @@
# heraj
group=io.aergo
version=1.3.0-SNAPSHOT
version=1.3.0

# java
sourceJavaVersion=1.7
Expand Down

0 comments on commit 98b10e4

Please sign in to comment.