Skip to content

Commit

Permalink
v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
luca992 committed Feb 14, 2023
1 parent 2a40591 commit fa88650
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 7 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=1.2.2
VERSION_NAME=1.2.3
POM_ARTIFACT_ID=client

# Publishing : Optional
Expand Down
12 changes: 6 additions & 6 deletions secretk.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<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,9 +17,7 @@
<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>
Expand All @@ -39,7 +37,7 @@
<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 @@ -48,7 +46,9 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<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 @@ -2858,6 +2858,7 @@ __attribute__((swift_name("BignumBitwiseCapable")))
@required
- (id _Nullable)andOther:(id _Nullable)other __attribute__((swift_name("and(other:)")));
- (BOOL)bitAtPosition:(int64_t)position __attribute__((swift_name("bitAt(position:)")));
- (int32_t)bitLength __attribute__((swift_name("bitLength()")));
- (id _Nullable)not __attribute__((swift_name("not()")));
- (id _Nullable)orOther:(id _Nullable)other __attribute__((swift_name("or(other:)")));
- (id _Nullable)setBitAtPosition:(int64_t)position bit:(BOOL)bit __attribute__((swift_name("setBitAt(position:bit:)")));
Expand Down Expand Up @@ -2885,6 +2886,7 @@ __attribute__((swift_name("BignumBigInteger")))
- (SecretkBignumBigInteger *)addOther:(SecretkBignumBigInteger *)other __attribute__((swift_name("add(other:)")));
- (SecretkBignumBigInteger *)andOther:(SecretkBignumBigInteger *)other __attribute__((swift_name("and(other:)")));
- (BOOL)bitAtPosition:(int64_t)position __attribute__((swift_name("bitAt(position:)")));
- (int32_t)bitLength __attribute__((swift_name("bitLength()")));
- (int8_t)byteValueExactRequired:(BOOL)exactRequired __attribute__((swift_name("byteValue(exactRequired:)")));
- (int32_t)compareOther:(SecretkBignumBigInteger *)other __attribute__((swift_name("compare(other:)")));
- (int32_t)compareDoubleAndBigIntDouble:(double)double_ comparisonBlock:(SecretkInt *(^)(SecretkBignumBigInteger *))comparisonBlock __attribute__((swift_name("compareDoubleAndBigInt(double:comparisonBlock:)")));
Expand Down
Binary file modified secretk.xcframework/ios-arm64/secretk.framework/secretk
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2858,6 +2858,7 @@ __attribute__((swift_name("BignumBitwiseCapable")))
@required
- (id _Nullable)andOther:(id _Nullable)other __attribute__((swift_name("and(other:)")));
- (BOOL)bitAtPosition:(int64_t)position __attribute__((swift_name("bitAt(position:)")));
- (int32_t)bitLength __attribute__((swift_name("bitLength()")));
- (id _Nullable)not __attribute__((swift_name("not()")));
- (id _Nullable)orOther:(id _Nullable)other __attribute__((swift_name("or(other:)")));
- (id _Nullable)setBitAtPosition:(int64_t)position bit:(BOOL)bit __attribute__((swift_name("setBitAt(position:bit:)")));
Expand Down Expand Up @@ -2885,6 +2886,7 @@ __attribute__((swift_name("BignumBigInteger")))
- (SecretkBignumBigInteger *)addOther:(SecretkBignumBigInteger *)other __attribute__((swift_name("add(other:)")));
- (SecretkBignumBigInteger *)andOther:(SecretkBignumBigInteger *)other __attribute__((swift_name("and(other:)")));
- (BOOL)bitAtPosition:(int64_t)position __attribute__((swift_name("bitAt(position:)")));
- (int32_t)bitLength __attribute__((swift_name("bitLength()")));
- (int8_t)byteValueExactRequired:(BOOL)exactRequired __attribute__((swift_name("byteValue(exactRequired:)")));
- (int32_t)compareOther:(SecretkBignumBigInteger *)other __attribute__((swift_name("compare(other:)")));
- (int32_t)compareDoubleAndBigIntDouble:(double)double_ comparisonBlock:(SecretkInt *(^)(SecretkBignumBigInteger *))comparisonBlock __attribute__((swift_name("compareDoubleAndBigInt(double:comparisonBlock:)")));
Expand Down
Loading

0 comments on commit fa88650

Please sign in to comment.