diff --git a/devdocs/deploy.md b/devdocs/deploy.md index beaf3ed9..6a962d38 100644 --- a/devdocs/deploy.md +++ b/devdocs/deploy.md @@ -6,7 +6,7 @@ If any packages have been changed in the release do a thorough security scan and ### Bump version numbers: -Search and replace 8.0.0-rc.1 +Search and replace 8.0.0 webapp,server,launcher, v8migrate Client end ayanova-version.js, diff --git a/devdocs/todo.txt b/devdocs/todo.txt index 9a387740..22d42175 100644 --- a/devdocs/todo.txt +++ b/devdocs/todo.txt @@ -1080,6 +1080,6 @@ https://www.ayanova.com/download/next/ayanova-linux-x64-server.zip https://www.ayanova.com/download/next/ayanova-windows-x64-lan-setup.exe Current v8 docs home: https://www.ayanova.com/docs/next -BUILD 8.0.0-rc.1 CHANGES OF NOTE +BUILD 8.0.0 CHANGES OF NOTE diff --git a/dist/install/windows/x64/lan.iss b/dist/install/windows/x64/lan.iss index beee1791..2e96da79 100644 --- a/dist/install/windows/x64/lan.iss +++ b/dist/install/windows/x64/lan.iss @@ -1,7 +1,7 @@ ; LAN install for internal network use only #define MyAppName "AyaNova server" -#define MyAppVersion "8.0.0-rc.1" +#define MyAppVersion "8.0.0" #define MyAppPublisher "Ground Zero Tech-Works, Inc." #define MyAppURL "https://ayanova.com/" #define MyAppLauncherExeName "ayanova-launcher.exe" diff --git a/dist/install/windows/x64/standalone.iss b/dist/install/windows/x64/standalone.iss index e4addcfd..b2821ecf 100644 --- a/dist/install/windows/x64/standalone.iss +++ b/dist/install/windows/x64/standalone.iss @@ -3,7 +3,7 @@ ; external to lan requires different config #define MyAppName "AyaNova" -#define MyAppVersion "8.0.0-rc.1" +#define MyAppVersion "8.0.0" #define MyAppPublisher "Ground Zero Tech-Works, Inc." #define MyAppURL "https://ayanova.com/" #define MyAppLauncherExeName "ayanova-launcher.exe" diff --git a/docs/8.0/ayanova/docs/index.md b/docs/8.0/ayanova/docs/index.md index 117da854..194ae60d 100644 --- a/docs/8.0/ayanova/docs/index.md +++ b/docs/8.0/ayanova/docs/index.md @@ -22,4 +22,4 @@ Or check out our support forum [forum.ayanova.com](http://forum.ayanova.com/) --- -
Documentation version: 8.0.0-rc.1, Copyright © 2022 Ground Zero Tech-Works Inc.
+
Documentation version: 8.0.0, Copyright © 2022 Ground Zero Tech-Works Inc.
diff --git a/docs/8.0/customer/docs/index.md b/docs/8.0/customer/docs/index.md index 06e81498..575a2e7f 100644 --- a/docs/8.0/customer/docs/index.md +++ b/docs/8.0/customer/docs/index.md @@ -8,4 +8,4 @@ Please contact your service company administrator if you have additional questio --- -
Documentation version: 8.0.0-rc.1, Copyright © 2022 Ground Zero Tech-Works Inc.
+
Documentation version: 8.0.0, Copyright © 2022 Ground Zero Tech-Works Inc.
diff --git a/server/AyaNova/util/AyaNovaVersion.cs b/server/AyaNova/util/AyaNovaVersion.cs index cade144c..28be6df4 100644 --- a/server/AyaNova/util/AyaNovaVersion.cs +++ b/server/AyaNova/util/AyaNovaVersion.cs @@ -5,7 +5,7 @@ namespace AyaNova.Util /// internal static class AyaNovaVersion { - public const string VersionString = "8.0.0-rc.1"; + public const string VersionString = "8.0.0"; public const string FullNameAndVersion = "AyaNova server " + VersionString; public const string CurrentApiVersion="v8"; }//eoc