File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
projects/NeuralAmpModeler-macOS.xcodeproj/xcshareddata/xcschemes Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ https://github.com/sdatkinson/NeuralAmpModelerPlugin
8
8
01/02/2023 - v0.6.0
9
9
01/28/2023 - v0.6.1
10
10
02/04/2023 - v0.6.2
11
- 02/26 /2023 - v0.7.0
11
+ 03/05 /2023 - v0.7.0
Original file line number Diff line number Diff line change 40
40
</Testables >
41
41
</TestAction >
42
42
<LaunchAction
43
- buildConfiguration = " Debug "
43
+ buildConfiguration = " Release "
44
44
selectedDebuggerIdentifier = " Xcode.DebuggerFoundation.Debugger.LLDB"
45
45
selectedLauncherIdentifier = " Xcode.DebuggerFoundation.Launcher.LLDB"
46
46
launchStyle = " 0"
Original file line number Diff line number Diff line change @@ -38,8 +38,10 @@ def main():
38
38
newVersionInfo = currentVersionInfo .bump_minor ()
39
39
elif sys .argv [1 ] == "patch" :
40
40
newVersionInfo = currentVersionInfo .bump_patch ()
41
- else :
41
+ elif sys . argv [ 1 ] == "none" :
42
42
newVersionInfo = currentVersionInfo
43
+ else :
44
+ raise ValueError (f"Unrecognized version bump for '{ sys .argv [1 ]} '" )
43
45
else :
44
46
print ("Please supply an argument major, minor or patch" )
45
47
exit ()
You can’t perform that action at this time.
0 commit comments