Skip to content

Commit

Permalink
Version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sdatkinson committed Mar 5, 2023
1 parent 41a17cf commit 7cbce3b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NeuralAmpModeler/installer/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ https://github.com/sdatkinson/NeuralAmpModelerPlugin
01/02/2023 - v0.6.0
01/28/2023 - v0.6.1
02/04/2023 - v0.6.2
02/26/2023 - v0.7.0
03/05/2023 - v0.7.0
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
buildConfiguration = "Release"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
Expand Down
4 changes: 3 additions & 1 deletion bump_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ def main():
newVersionInfo = currentVersionInfo.bump_minor()
elif sys.argv[1] == "patch":
newVersionInfo = currentVersionInfo.bump_patch()
else:
elif sys.argv[1] == "none":
newVersionInfo = currentVersionInfo
else:
raise ValueError(f"Unrecognized version bump for '{sys.argv[1]}'")
else:
print("Please supply an argument major, minor or patch")
exit()
Expand Down

0 comments on commit 7cbce3b

Please sign in to comment.