Skip to content

Commit

Permalink
v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
luca992 committed Oct 31, 2022
1 parent 2ab57f6 commit e07b046
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 21 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx4g

# Publishing : Required
GROUP=io.eqoty.secretk
VERSION_NAME=0.13.0
VERSION_NAME=0.14.0
POM_ARTIFACT_ID=client

# Publishing : Optional
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -219,16 +219,18 @@ __attribute__((swift_name("Coin")))
- (NSString *)component1 __attribute__((swift_name("component1()"))) __attribute__((deprecated("use corresponding property instead")));
- (NSString *)component2 __attribute__((swift_name("component2()"))) __attribute__((deprecated("use corresponding property instead")));
- (SecretkCoin *)doCopyAmount:(NSString *)amount denom:(NSString *)denom __attribute__((swift_name("doCopy(amount:denom:)")));
- (SecretkCoin *)divIncrement:(SecretkBignumBigInteger *)increment __attribute__((swift_name("div(increment:)")));
- (SecretkCoin *)divIncrement_:(SecretkCoin *)increment __attribute__((swift_name("div(increment_:)")));
- (SecretkCoin *)divOther:(SecretkBignumBigInteger *)other __attribute__((swift_name("div(other:)")));
- (SecretkCoin *)divOther_:(SecretkCoin *)other __attribute__((swift_name("div(other_:)")));
- (BOOL)isEqual:(id _Nullable)other __attribute__((swift_name("isEqual(_:)")));
- (NSUInteger)hash __attribute__((swift_name("hash()")));
- (SecretkCoin *)minusIncrement:(SecretkBignumBigInteger *)increment __attribute__((swift_name("minus(increment:)")));
- (SecretkCoin *)minusIncrement_:(SecretkCoin *)increment __attribute__((swift_name("minus(increment_:)")));
- (SecretkCoin *)plusIncrement:(SecretkBignumBigInteger *)increment __attribute__((swift_name("plus(increment:)")));
- (SecretkCoin *)plusIncrement_:(SecretkCoin *)increment __attribute__((swift_name("plus(increment_:)")));
- (SecretkCoin *)timesIncrement:(SecretkBignumBigInteger *)increment __attribute__((swift_name("times(increment:)")));
- (SecretkCoin *)timesIncrement_:(SecretkCoin *)increment __attribute__((swift_name("times(increment_:)")));
- (SecretkCoin *)remOther:(SecretkBignumBigInteger *)other __attribute__((swift_name("rem(other:)")));
- (SecretkCoin *)remOther_:(SecretkCoin *)other __attribute__((swift_name("rem(other_:)")));
- (SecretkCoin *)timesOther:(SecretkBignumBigInteger *)other __attribute__((swift_name("times(other:)")));
- (SecretkCoin *)timesOther_:(SecretkCoin *)other __attribute__((swift_name("times(other_:)")));
- (SecretkCoinProto *)toProto __attribute__((swift_name("toProto()")));
- (NSString *)description __attribute__((swift_name("description()")));
@property (readonly) NSString *amount __attribute__((swift_name("amount")));
Expand Down
Loading

0 comments on commit e07b046

Please sign in to comment.