Skip to content

Commit c1b1084

Browse files
authored
Merge pull request #413 from mixpanel/fix-release-script
fix release script
2 parents ea7615b + 89825f2 commit c1b1084

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Sources/AutomaticProperties.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class AutomaticProperties {
118118
#endif
119119

120120
class func libVersion() -> String {
121-
return "2.7.7"
121+
return "2.8.0"
122122
}
123123

124124
}

release.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ def bump_version():
1515
replace_version('generate_docs.sh', args.old, args.new)
1616
subprocess.call('git add Mixpanel-swift.podspec', shell=True)
1717
subprocess.call('git add Sources/Info.plist', shell=True)
18+
subprocess.call('git add Sources/AutomaticProperties.swift', shell=True)
1819
subprocess.call('git add generate_docs.sh', shell=True)
1920
subprocess.call('git commit -m "Version {}"'.format(args.new), shell=True)
2021
subprocess.call('git push', shell=True)

0 commit comments

Comments
 (0)