Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.33.0 #20

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Framework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.21.0</string>
<string>2.33.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Qonversion.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |s|
excluded_files = ['Sources/Qonversion/Automations', 'Sources/Qonversion/Public/QONAutomations*.{h,m}', 'Sources/Qonversion/Public/QONActionResult.{h,m}']
idfa_exclude_files = ['Sources/Qonversion/IDFA']
s.name = 'Qonversion'
s.version = '2.21.0'
s.version = '2.33.0'
s.summary = 'qonversion.io'
s.description = <<-DESC
Deep Analytics for iOS Subscriptions
Expand Down
2 changes: 1 addition & 1 deletion Sources/Qonversion/Public/QNConstants.m
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#import "QNConstants.h"

NSString *const keyQVersion = @"2.21.0";
NSString *const keyQVersion = @"2.33.0";
NSString *const keyQUnknownLibrary = @"unknown";
NSString *const keyQUnknownVersion = @"unknown";
NSString *const keyQInternalUserID = @"keyQInternalUserID";
Expand Down
6 changes: 2 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ end
lane :patch do
tag = get_tag
new_version = calculate_patch_version(tag)
puts "#{new_version}"
new_tag = "prerelease/" + new_version
push_tag(new_tag)
end
Expand All @@ -27,7 +26,6 @@ lane :minor do
tag = get_tag
new_version = calculate_minor_version(tag)
new_tag = "prerelease/" + new_version
puts "#{new_tag}"
push_tag(new_tag)
end

Expand Down Expand Up @@ -55,8 +53,8 @@ end
def push_tag(tag)
system("git checkout develop")
system("git pull origin develop")
add_git_tag(tag: new_tag)
push_git_tags(tag: new_tag)
add_git_tag(tag: tag)
push_git_tags(tag: tag)
end

def parse_versions(tag)
Expand Down
7 changes: 6 additions & 1 deletion fastlane/report.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@



<testcase classname="fastlane.lanes" name="0: last_git_tag" time="0.065872">
<testcase classname="fastlane.lanes" name="0: update_plist" time="0.100997">

</testcase>


<testcase classname="fastlane.lanes" name="1: version_bump_podspec" time="0.002136">

</testcase>

Expand Down