Skip to content

Commit

Permalink
Tag/1.0.0 beta07 (#90)
Browse files Browse the repository at this point in the history
* Enhancements
  • Loading branch information
Peter Joseph Olamit authored Aug 20, 2020
1 parent 5ff3017 commit 95a8678
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@ Changelog
-------------------
- Added support to List User Balances
- Enhancements

[1.0.0-beta07](https://github.com/hyperwallet/hyperwallet-ios-sdk/releases/tag/1.0.0-beta07)
-------------------
- Enhancements
2 changes: 1 addition & 1 deletion HyperwalletSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'HyperwalletSDK'
spec.version = '1.0.0-beta06'
spec.version = '1.0.0-beta07'
spec.summary = 'Hyperwallet Core SDK for iOS to integrate with Hyperwallet Platform'
spec.homepage = 'https://github.com/hyperwallet/hyperwallet-ios-sdk'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
2 changes: 2 additions & 0 deletions HyperwalletSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1013,6 +1013,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.0;
PRODUCT_BUNDLE_IDENTIFIER = com.hyperwallet.ios.HyperwalletSDK;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1042,6 +1043,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.0;
PRODUCT_BUNDLE_IDENTIFIER = com.hyperwallet.ios.HyperwalletSDK;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ Use [Carthage](https://github.com/Carthage/Carthage) or [CocoaPods](https://coco
### Carthage
Specify it in your Cartfile:
```ogdl
github "hyperwallet/hyperwallet-ios-sdk" "1.0.0-beta06"
github "hyperwallet/hyperwallet-ios-sdk" "1.0.0-beta07"
```

### CocoaPods
Specify it in your Podfile:
```ruby
pod 'HyperwalletSDK', '~> 1.0.0-beta06'
pod 'HyperwalletSDK', '~> 1.0.0-beta07'
```

## Initialization
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0.0-beta06</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
Expand Down
4 changes: 2 additions & 2 deletions Tests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0.0-beta06</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>1</string>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
</plist>
9 changes: 3 additions & 6 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ lane :beta do
update("beta", version)
end

lane :release do
version = get_version_number(target: "HyperwalletSDK")
lane :release_beta do
version = updateVersion("beta")
commit = last_git_commit
message = commit[:message]
add_git_tag(tag: "#{version}", message: "#{message}")
Expand All @@ -31,10 +31,7 @@ def update(type, version)
podspec_name = "HyperwalletSDK.podspec"
pod_lib_lint(allow_warnings: true, skip_tests: true)
version_bump_podspec(version_number: version, path: podspec_name)
increment_version_number(version_number: version)
git_add(path: podspec_name)
git_add(path: "**/Info.plist")
git_commit(path: [podspec_name, "**/Info.plist"],
message: "#{version} release")
git_commit(path: [podspec_name], message: "#{version} release")
push_to_git_remote
end

0 comments on commit 95a8678

Please sign in to comment.