diff --git a/docs/sphinx-docs/source/conf.py b/docs/sphinx-docs/source/conf.py index 7366dc26a4..065edfa823 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.0rc1' +release = '6.0.0' # 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 4194b38153..f90b2eea2a 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.0rc1" +#define MyAppVersion "6.0.0" #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 8450cf5327..f2ad9d171e 100644 --- a/src/sas/system/version.py +++ b/src/sas/system/version.py @@ -1,3 +1,4 @@ -__version__ = "6.0.0rc1" +# Version must be of the form 'X.Y.Z'. No alpha/beta/rc versioning should be set here +__version__ = "6.0.0" __release_date__ = "2024" __build__ = "GIT_COMMIT"