Skip to content

Commit 0a935cc

Browse files
committed
Change build metadata in version string back to -1 which is not fully semver
1 parent 634cb45 commit 0a935cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/update-release/update-release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def get_latest_v1_tag_name(repo_owner, repo_name, allow_prerelease: bool = False
100100
tag_name = latest_tag.replace('v', '')
101101
version = semver.VersionInfo.parse(tag_name)
102102

103-
CFBundleShortVersionString = "{}+{:d}".format(
103+
CFBundleShortVersionString = "{}-{:d}".format(
104104
str(version),
105105
distVersion)
106106
CFBundleVersion = "{:d}{:03d}{:03d}{:02d}".format(

syncthing/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>1.30.0+1</string>
22+
<string>1.30.0-1</string>
2323
<key>CFBundleVersion</key>
2424
<string>103000001</string>
2525
<key>LSApplicationCategoryType</key>

0 commit comments

Comments
 (0)