Skip to content

Commit

Permalink
v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
luca992 committed Oct 31, 2022
1 parent 53fc58a commit 1ae8294
Show file tree
Hide file tree
Showing 13 changed files with 51 additions and 31 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.12.1
VERSION_NAME=0.13.0
POM_ARTIFACT_ID=client

# Publishing : Optional
Expand Down
20 changes: 10 additions & 10 deletions secretk.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>macos-arm64_x86_64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>secretk.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -15,38 +17,36 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>secretk.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>macos</string>
</dict>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>secretk.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,16 @@ __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:(SecretkCoin *)increment __attribute__((swift_name("div(increment:)")));
- (SecretkCoin *)divIncrement:(SecretkBignumBigInteger *)increment __attribute__((swift_name("div(increment:)")));
- (SecretkCoin *)divIncrement_:(SecretkCoin *)increment __attribute__((swift_name("div(increment_:)")));
- (BOOL)isEqual:(id _Nullable)other __attribute__((swift_name("isEqual(_:)")));
- (NSUInteger)hash __attribute__((swift_name("hash()")));
- (SecretkCoin *)minusIncrement:(SecretkCoin *)increment __attribute__((swift_name("minus(increment:)")));
- (SecretkCoin *)plusIncrement:(SecretkCoin *)increment __attribute__((swift_name("plus(increment:)")));
- (SecretkCoin *)timesIncrement:(SecretkCoin *)increment __attribute__((swift_name("times(increment:)")));
- (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_:)")));
- (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 1ae8294

Please sign in to comment.