Skip to content
This repository was archived by the owner on Jun 14, 2025. It is now read-only.

Commit 25dc169

Browse files
committed
Bump version
1 parent dc9a446 commit 25dc169

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

BloctoSDK.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'BloctoSDK'
3-
s.version = '0.4.2'
3+
s.version = '0.4.3'
44
s.summary = 'A SDK to interact with Blockchain through Blocto Wallet App.'
55

66
s.homepage = 'https://github.com/portto/blocto-ios-sdk'
@@ -26,13 +26,13 @@ Pod::Spec.new do |s|
2626

2727
s.subspec "EVMBase" do |ss|
2828
ss.source_files = "Sources/EVMBase/**/*"
29-
ss.dependency "BloctoSDK/Core", "~> 0.4.2"
29+
ss.dependency "BloctoSDK/Core", "~> 0.4.3"
3030
ss.dependency "BigInt", "~> 5.0"
3131
end
3232

3333
s.subspec "Flow" do |ss|
3434
ss.source_files = "Sources/Flow/**/*"
35-
ss.dependency "BloctoSDK/Core", "~> 0.4.2"
35+
ss.dependency "BloctoSDK/Core", "~> 0.4.3"
3636
ss.dependency "FlowSDK", "~> 0.4.2"
3737
end
3838

@@ -46,7 +46,7 @@ Pod::Spec.new do |s|
4646
"Sources/EVMBase/Models/EVMBaseTransaction.swift",
4747
"Sources/EVMBase/Models/SignType.swift",
4848
"Sources/Flow/Models/**/*"
49-
ss.dependency "BloctoSDK/Core", "~> 0.4.2"
49+
ss.dependency "BloctoSDK/Core", "~> 0.4.3"
5050
ss.dependency "BigInt", "~> 5.0"
5151
ss.dependency "FlowSDK", "~> 0.4.2"
5252
end

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,26 +25,26 @@ from the Example directory first.
2525
BloctoSDK is available through [CocoaPods](https://cocoapods.org). You can only include specific subspec to install, simply add the following line to your Podfile:
2626

2727
```ruby
28-
pod 'BloctoSDK', '~> 0.4.2'
28+
pod 'BloctoSDK', '~> 0.4.3'
2929

3030
# or
3131

32-
pod 'BloctoSDK/Solana', '~> 0.4.2'
32+
pod 'BloctoSDK/Solana', '~> 0.4.3'
3333

3434
# or
3535

36-
pod 'BloctoSDK/EVMBase', '~> 0.4.2'
36+
pod 'BloctoSDK/EVMBase', '~> 0.4.3'
3737

3838
# or
3939

40-
pod 'BloctoSDK/Flow', '~> 0.4.2'
40+
pod 'BloctoSDK/Flow', '~> 0.4.3'
4141
```
4242

4343
### Swift Package Manager
4444

4545

4646
```swift
47-
.package(url: "https://github.com/portto/blocto-ios-sdk.git", .upToNextMinor(from: "0.4.2"))
47+
.package(url: "https://github.com/portto/blocto-ios-sdk.git", .upToNextMinor(from: "0.4.3"))
4848
```
4949

5050
and then specify `"BloctoSDK"` as a dependency of the Target in which you wish to use.
@@ -63,7 +63,7 @@ let package = Package(
6363
),
6464
],
6565
dependencies: [
66-
.package(url: "https://github.com/portto/blocto-ios-sdk.git", .upToNextMinor(from: "0.4.2"))
66+
.package(url: "https://github.com/portto/blocto-ios-sdk.git", .upToNextMinor(from: "0.4.3"))
6767
],
6868
targets: [
6969
.target(

Sources/Solana/SDKInfo.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ enum SDKInfo {
1313
#if COCOAPODS
1414
return Bundle.resouceBundle?.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String ?? "unknown"
1515
#else
16-
return "0.4.2"
16+
return "0.4.3"
1717
#endif
1818
}
1919

0 commit comments

Comments
 (0)