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

Commit 977b0a4

Browse files
committed
Bump version
1 parent ad777f6 commit 977b0a4

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
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.3'
3+
s.version = '0.4.4'
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.3"
29+
ss.dependency "BloctoSDK/Core", "~> 0.4.4"
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.3"
35+
ss.dependency "BloctoSDK/Core", "~> 0.4.4"
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.3"
49+
ss.dependency "BloctoSDK/Core", "~> 0.4.4"
5050
ss.dependency "BigInt", "~> 5.0"
5151
ss.dependency "FlowSDK", "~> 0.4.2"
5252
end

Example/BloctoSDK.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -818,11 +818,11 @@
818818
buildSettings = {
819819
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
820820
CODE_SIGN_ENTITLEMENTS = BloctoSDK_Example.entitlements;
821-
CURRENT_PROJECT_VERSION = 12;
821+
CURRENT_PROJECT_VERSION = 13;
822822
INFOPLIST_FILE = BloctoSDK/Info.plist;
823823
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
824824
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
825-
MARKETING_VERSION = 1.2.4;
825+
MARKETING_VERSION = 1.2.5;
826826
MODULE_NAME = ExampleApp;
827827
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
828828
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -838,11 +838,11 @@
838838
buildSettings = {
839839
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
840840
CODE_SIGN_ENTITLEMENTS = BloctoSDK_Example.entitlements;
841-
CURRENT_PROJECT_VERSION = 12;
841+
CURRENT_PROJECT_VERSION = 13;
842842
INFOPLIST_FILE = BloctoSDK/Info.plist;
843843
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
844844
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
845-
MARKETING_VERSION = 1.2.4;
845+
MARKETING_VERSION = 1.2.5;
846846
MODULE_NAME = ExampleApp;
847847
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
848848
PRODUCT_NAME = "$(TARGET_NAME)";

Example/BloctoSDK/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
</dict>
4747
</array>
4848
<key>CFBundleVersion</key>
49-
<string>12</string>
49+
<string>13</string>
5050
<key>LSApplicationQueriesSchemes</key>
5151
<array>
5252
<string>blocto-dev</string>

Example/Tests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>12</string>
22+
<string>13</string>
2323
</dict>
2424
</plist>

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.3'
28+
pod 'BloctoSDK', '~> 0.4.4'
2929

3030
# or
3131

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

3434
# or
3535

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

3838
# or
3939

40-
pod 'BloctoSDK/Flow', '~> 0.4.3'
40+
pod 'BloctoSDK/Flow', '~> 0.4.4'
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.3"))
47+
.package(url: "https://github.com/portto/blocto-ios-sdk.git", .upToNextMinor(from: "0.4.4"))
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.3"))
66+
.package(url: "https://github.com/portto/blocto-ios-sdk.git", .upToNextMinor(from: "0.4.4"))
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.3"
16+
return "0.4.4"
1717
#endif
1818
}
1919

0 commit comments

Comments
 (0)