diff --git a/changelog.md b/changelog.md index 585b81c4..a5222dae 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,11 @@ +# 11.0.0 + +Saves from 10.x are not compatible with 11.0.0. + +## Features/Improvements + +## Fixes + # 10.0.0 Saves from 9.x are not compatible with 10.0.0. diff --git a/docs/conf.py b/docs/conf.py index 624ead61..c39fd197 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = "DCS Liberation" copyright = "2023, DCS Liberation Team" author = "DCS Liberation Team" -release = "10.0.0" +release = "11.0.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/game/version.py b/game/version.py index 505ae9b8..bcc31dec 100644 --- a/game/version.py +++ b/game/version.py @@ -1,7 +1,7 @@ from pathlib import Path -MAJOR_VERSION = 10 +MAJOR_VERSION = 11 MINOR_VERSION = 0 MICRO_VERSION = 0 VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION))