Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
luca992 committed Sep 30, 2022
1 parent e1dc250 commit 3d2f94b
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ repositories {
}
dependencies {
implementation("io.eqoty.secretk:client:0.6.0")
implementation("io.eqoty.secretk:client:0.7.0")
}
```

Expand All @@ -58,7 +58,7 @@ dependencies {
you need to declare your dependency in your `Package.swift`:

```swift
.package(url: "https://github.com/eqoty-labs/secretk.git", from: "0.6.0"),
.package(url: "https://github.com/eqoty-labs/secretk.git", from: "0.7.0"),
```

## Useage
Expand Down
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=-Xmx4096m

# Publishing : Required
GROUP=io.eqoty.secretk
VERSION_NAME=0.6.0
VERSION_NAME=0.7.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,10 +5,8 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>secretk.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -17,36 +15,38 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>macos</string>
</dict>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</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>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>macos-arm64_x86_64</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>macos</string>
<string>ios</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1934,13 +1934,13 @@ __attribute__((swift_name("SigningCosmWasmClient.Companion")))
@note This method converts instances of CancellationException to errors.
Other uncaught Kotlin exceptions are fatal.
*/
- (void)doInitApiUrl:(NSString *)apiUrl senderAddress:(NSString *)senderAddress wallet:(id<SecretkWallet>)wallet enigmaUtils:(id<SecretkEncryptionUtils>)enigmaUtils broadcastMode:(SecretkBroadcastMode *)broadcastMode completionHandler:(void (^)(SecretkSigningCosmWasmClient * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("doInit(apiUrl:senderAddress:wallet:enigmaUtils:broadcastMode:completionHandler:)")));
- (void)doInitApiUrl:(NSString *)apiUrl senderAddress:(NSString *)senderAddress wallet:(id<SecretkWallet>)wallet enigmaUtils:(id<SecretkEncryptionUtils>)enigmaUtils broadcastMode:(SecretkBroadcastMode *)broadcastMode chainId:(NSString * _Nullable)chainId completionHandler:(void (^)(SecretkSigningCosmWasmClient * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("doInit(apiUrl:senderAddress:wallet:enigmaUtils:broadcastMode:chainId:completionHandler:)")));

/**
@note This method converts instances of CancellationException to errors.
Other uncaught Kotlin exceptions are fatal.
*/
- (void)doInitApiUrl:(NSString *)apiUrl senderAddress:(NSString *)senderAddress wallet:(id<SecretkWallet>)wallet seed:(id _Nullable)seed broadcastMode:(SecretkBroadcastMode *)broadcastMode completionHandler:(void (^)(SecretkSigningCosmWasmClient * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("doInit(apiUrl:senderAddress:wallet:seed:broadcastMode:completionHandler:)")));
- (void)doInitApiUrl:(NSString *)apiUrl senderAddress:(NSString *)senderAddress wallet:(id<SecretkWallet>)wallet seed:(id _Nullable)seed broadcastMode:(SecretkBroadcastMode *)broadcastMode chainId:(NSString * _Nullable)chainId completionHandler:(void (^)(SecretkSigningCosmWasmClient * _Nullable, NSError * _Nullable))completionHandler __attribute__((swift_name("doInit(apiUrl:senderAddress:wallet:seed:broadcastMode:chainId:completionHandler:)")));
@end;

__attribute__((objc_subclassing_restricted))
Expand Down
Loading

0 comments on commit 3d2f94b

Please sign in to comment.