Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew54068 committed Nov 29, 2022
1 parent ad777f6 commit 977b0a4
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions BloctoSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'BloctoSDK'
s.version = '0.4.3'
s.version = '0.4.4'
s.summary = 'A SDK to interact with Blockchain through Blocto Wallet App.'

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

s.subspec "EVMBase" do |ss|
ss.source_files = "Sources/EVMBase/**/*"
ss.dependency "BloctoSDK/Core", "~> 0.4.3"
ss.dependency "BloctoSDK/Core", "~> 0.4.4"
ss.dependency "BigInt", "~> 5.0"
end

s.subspec "Flow" do |ss|
ss.source_files = "Sources/Flow/**/*"
ss.dependency "BloctoSDK/Core", "~> 0.4.3"
ss.dependency "BloctoSDK/Core", "~> 0.4.4"
ss.dependency "FlowSDK", "~> 0.4.2"
end

Expand All @@ -46,7 +46,7 @@ Pod::Spec.new do |s|
"Sources/EVMBase/Models/EVMBaseTransaction.swift",
"Sources/EVMBase/Models/SignType.swift",
"Sources/Flow/Models/**/*"
ss.dependency "BloctoSDK/Core", "~> 0.4.3"
ss.dependency "BloctoSDK/Core", "~> 0.4.4"
ss.dependency "BigInt", "~> 5.0"
ss.dependency "FlowSDK", "~> 0.4.2"
end
Expand Down
8 changes: 4 additions & 4 deletions Example/BloctoSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -818,11 +818,11 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = BloctoSDK_Example.entitlements;
CURRENT_PROJECT_VERSION = 12;
CURRENT_PROJECT_VERSION = 13;
INFOPLIST_FILE = BloctoSDK/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.2.4;
MARKETING_VERSION = 1.2.5;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -838,11 +838,11 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = BloctoSDK_Example.entitlements;
CURRENT_PROJECT_VERSION = 12;
CURRENT_PROJECT_VERSION = 13;
INFOPLIST_FILE = BloctoSDK/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.2.4;
MARKETING_VERSION = 1.2.5;
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion Example/BloctoSDK/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>12</string>
<string>13</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>blocto-dev</string>
Expand Down
2 changes: 1 addition & 1 deletion Example/Tests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>12</string>
<string>13</string>
</dict>
</plist>
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,26 @@ from the Example directory first.
BloctoSDK is available through [CocoaPods](https://cocoapods.org). You can only include specific subspec to install, simply add the following line to your Podfile:

```ruby
pod 'BloctoSDK', '~> 0.4.3'
pod 'BloctoSDK', '~> 0.4.4'

# or

pod 'BloctoSDK/Solana', '~> 0.4.3'
pod 'BloctoSDK/Solana', '~> 0.4.4'

# or

pod 'BloctoSDK/EVMBase', '~> 0.4.3'
pod 'BloctoSDK/EVMBase', '~> 0.4.4'

# or

pod 'BloctoSDK/Flow', '~> 0.4.3'
pod 'BloctoSDK/Flow', '~> 0.4.4'
```

### Swift Package Manager


```swift
.package(url: "https://github.com/portto/blocto-ios-sdk.git", .upToNextMinor(from: "0.4.3"))
.package(url: "https://github.com/portto/blocto-ios-sdk.git", .upToNextMinor(from: "0.4.4"))
```

and then specify `"BloctoSDK"` as a dependency of the Target in which you wish to use.
Expand All @@ -63,7 +63,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/portto/blocto-ios-sdk.git", .upToNextMinor(from: "0.4.3"))
.package(url: "https://github.com/portto/blocto-ios-sdk.git", .upToNextMinor(from: "0.4.4"))
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/Solana/SDKInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ enum SDKInfo {
#if COCOAPODS
return Bundle.resouceBundle?.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String ?? "unknown"
#else
return "0.4.3"
return "0.4.4"
#endif
}

Expand Down

0 comments on commit 977b0a4

Please sign in to comment.