Skip to content

Commit

Permalink
Merge pull request #413 from mixpanel/fix-release-script
Browse files Browse the repository at this point in the history
fix release script
  • Loading branch information
zihejia authored Oct 15, 2020
2 parents ea7615b + 89825f2 commit c1b1084
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/AutomaticProperties.swift
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class AutomaticProperties {
#endif

class func libVersion() -> String {
return "2.7.7"
return "2.8.0"
}

}
1 change: 1 addition & 0 deletions release.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def bump_version():
replace_version('generate_docs.sh', args.old, args.new)
subprocess.call('git add Mixpanel-swift.podspec', shell=True)
subprocess.call('git add Sources/Info.plist', shell=True)
subprocess.call('git add Sources/AutomaticProperties.swift', shell=True)
subprocess.call('git add generate_docs.sh', shell=True)
subprocess.call('git commit -m "Version {}"'.format(args.new), shell=True)
subprocess.call('git push', shell=True)
Expand Down

0 comments on commit c1b1084

Please sign in to comment.