Skip to content

Commit 7cbce3b

Browse files
committed
Version 0.7.0
1 parent 41a17cf commit 7cbce3b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

NeuralAmpModeler/installer/changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ https://github.com/sdatkinson/NeuralAmpModelerPlugin
88
01/02/2023 - v0.6.0
99
01/28/2023 - v0.6.1
1010
02/04/2023 - v0.6.2
11-
02/26/2023 - v0.7.0
11+
03/05/2023 - v0.7.0

NeuralAmpModeler/projects/NeuralAmpModeler-macOS.xcodeproj/xcshareddata/xcschemes/macOS-APP.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
</Testables>
4141
</TestAction>
4242
<LaunchAction
43-
buildConfiguration = "Debug"
43+
buildConfiguration = "Release"
4444
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
4545
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
4646
launchStyle = "0"

bump_version.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,10 @@ def main():
3838
newVersionInfo = currentVersionInfo.bump_minor()
3939
elif sys.argv[1] == "patch":
4040
newVersionInfo = currentVersionInfo.bump_patch()
41-
else:
41+
elif sys.argv[1] == "none":
4242
newVersionInfo = currentVersionInfo
43+
else:
44+
raise ValueError(f"Unrecognized version bump for '{sys.argv[1]}'")
4345
else:
4446
print("Please supply an argument major, minor or patch")
4547
exit()

0 commit comments

Comments
 (0)