This commit is contained in:
2021-08-17 17:04:57 +00:00
parent 1ea621f5a8
commit 5a100959b9
2 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ SERVER
- BUMP AyaNova.csproj version number
- BUILD RELEASE Run buildrelease.bat in server project folder
https://www.ayanova.com/Downloads/v8/ayanova8.alpha.118-win-x64.7z
https://www.ayanova.com/Downloads/v8/ayanova8.alpha.120-win-x64.7z
https://www.ayanova.com/Downloads/v8/V8Migrate.exe
- COPY TO DEVOPS SERVER
@@ -40,7 +40,7 @@ https://www.ayanova.com/Downloads/v8/V8Migrate.exe
- execute sudo docker-compose down
- Build new image forcing it to update as it sometimes doesn't
- sudo docker-compose build --force-rm --pull
- docker-compose build --force-rm --pull
(NOTE: this will *not* pull newer postgres as it's an image already present so to update that need to do a sudo docker pull postgres:alpine first then build the image
if the major version is incompatible with the old database then there is a whole process to save it by dumping and re-building or just delete all files in the folder /var/lib/ayanova/db rm * -r

View File

@@ -5,7 +5,7 @@ namespace AyaNova.Util
/// </summary>
internal static class AyaNovaVersion
{
public const string VersionString = "8.0.0-alpha.119";
public const string VersionString = "8.0.0-alpha.120";
public const string FullNameAndVersion = "AyaNova server " + VersionString;
}//eoc
}//eons