From a0c402a73e04fbcadff32fd04c24df9fc672d0b6 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 16 Mar 2022 00:15:34 +0000 Subject: [PATCH] Beta .1 release --- devdocs/deploy.txt | 2 +- dist/install/windows/x64/lan.iss | 2 +- dist/install/windows/x64/standalone.iss | 2 +- docs/8.0/ayanova/docs/index.md | 2 +- server/AyaNova/util/AyaNovaVersion.cs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/devdocs/deploy.txt b/devdocs/deploy.txt index c5372970..4f2a0b06 100644 --- a/devdocs/deploy.txt +++ b/devdocs/deploy.txt @@ -9,7 +9,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-beta.1-rc5 +Search and replace 8.0.0-beta.1 webapp,server,launcher, v8migrate Client end ayanova-version.js, diff --git a/dist/install/windows/x64/lan.iss b/dist/install/windows/x64/lan.iss index baf083a7..042dee2f 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-beta.1-rc5" +#define MyAppVersion "8.0.0-beta.1" #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 669a2226..bbf475cc 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-beta.1-rc5" +#define MyAppVersion "8.0.0-beta.1" #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 9cbf1f10..7309aeac 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-beta.1-rc5, Copyright © 2022 Ground Zero Tech-Works Inc.
+
Documentation version: 8.0.0-beta.1, Copyright © 2022 Ground Zero Tech-Works Inc.
diff --git a/server/AyaNova/util/AyaNovaVersion.cs b/server/AyaNova/util/AyaNovaVersion.cs index ab61fb7e..dd2804ea 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-beta.1-rc5"; + public const string VersionString = "8.0.0-beta.1"; public const string FullNameAndVersion = "AyaNova server " + VersionString; public const string CurrentApiVersion="v8"; }//eoc