diff --git a/changelog.md b/changelog.md index 23275e3c..6f6a1866 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,11 @@ +# 7.0.0 + +Saves from 6.x are not compatible with 7.0. + +## Features/Improvements + +## Fixes + # 6.0.0 Saves from 5.x are not compatible with 6.0. diff --git a/game/version.py b/game/version.py index 601c7fd7..3a682a9d 100644 --- a/game/version.py +++ b/game/version.py @@ -1,7 +1,7 @@ from pathlib import Path -MAJOR_VERSION = 6 +MAJOR_VERSION = 7 MINOR_VERSION = 0 MICRO_VERSION = 0 VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION))