From e1c535767aaa022051300af11596c955e2ca1aa5 Mon Sep 17 00:00:00 2001 From: krzywon Date: Thu, 24 Oct 2024 16:19:06 -0400 Subject: [PATCH] Update the version number throughout sasview and create new release_6.0.1 branch --- build_tools/release_automation.py | 4 ++-- docs/sphinx-docs/source/conf.py | 2 +- installers/installer.iss | 2 +- src/sas/system/version.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build_tools/release_automation.py b/build_tools/release_automation.py index bc42159902..403b245a4d 100644 --- a/build_tools/release_automation.py +++ b/build_tools/release_automation.py @@ -36,8 +36,8 @@ # Should import release notes from git repo, for now will need to cut and paste sasview_data = { 'metadata': { - 'title': f'SasView version 6.0.0', - 'description': f'6.0.0 release', + 'title': f'SasView version 6.0.1a1', + 'description': f'6.0.1a1 release', 'related_identifiers': [{'identifier': 'https://github.com/SasView/sasview/releases/tag/v6.0.0-beta-1', 'relation': 'isAlternateIdentifier', 'scheme': 'url'}], 'contributors': [ diff --git a/docs/sphinx-docs/source/conf.py b/docs/sphinx-docs/source/conf.py index 065edfa823..4d38a0a836 100644 --- a/docs/sphinx-docs/source/conf.py +++ b/docs/sphinx-docs/source/conf.py @@ -87,7 +87,7 @@ # The short X.Y version. version = '6.0' # The full version, including e.g. alpha tags (a1). -release = '6.0.0' +release = '6.0.1a1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/installers/installer.iss b/installers/installer.iss index f90b2eea2a..b2cb1b5031 100644 --- a/installers/installer.iss +++ b/installers/installer.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "SasView" -#define MyAppVersion "6.0.0" +#define MyAppVersion "6.0.1a1" #define MyAppPublisher "(c) 2009 - 2024, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO, TU Delft and DLS" #define MyAppURL "http://www.sasview.org" #define MyAppExeName "sasview.exe" diff --git a/src/sas/system/version.py b/src/sas/system/version.py index f2ad9d171e..94986bbc57 100644 --- a/src/sas/system/version.py +++ b/src/sas/system/version.py @@ -1,4 +1,4 @@ # Version must be of the form 'X.Y.Z'. No alpha/beta/rc versioning should be set here -__version__ = "6.0.0" +__version__ = "6.0.1" __release_date__ = "2024" __build__ = "GIT_COMMIT"