From 92c3087187360af59c9f072ce7dc48617c4d9a2c Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Thu, 18 May 2023 22:35:38 -0700 Subject: [PATCH] Advance develop to 8.0.0-preview. --- changelog.md | 8 ++++++++ game/version.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index c7689a0c..dd810d6b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,11 @@ +# 8.0.0 + +Saves from 7.x are not compatible with 8.0. + +## Features/Improvements + +## Fixes + # 7.0.0 Saves from 6.x are not compatible with 7.0. diff --git a/game/version.py b/game/version.py index 81330d5d..62b71870 100644 --- a/game/version.py +++ b/game/version.py @@ -1,7 +1,7 @@ from pathlib import Path -MAJOR_VERSION = 7 +MAJOR_VERSION = 8 MINOR_VERSION = 0 MICRO_VERSION = 0 VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION))