diff --git a/changelog.md b/changelog.md index 9a3c12dc..2bfe1b3b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,14 @@ +# 12.0.0 + +Saves from 11.x are not compatible with 12.0.0. + +## Features/Improvements + +* **[Mods]** F/A-18 E/F/G Super Hornet mod version updated to 2.3. + +## Fixes + + # 11.1.1 Saves from 11.0.0 are compatible with 11.1.1. See Known Issues section for exceptions. diff --git a/docs/conf.py b/docs/conf.py index 79b7ec28..8c3175e0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = "DCS Liberation" copyright = "2024, DCS Liberation Team" author = "DCS Liberation Team" -release = "11.1.1" +release = "12.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 9b95be9c..c100d9bb 100644 --- a/game/version.py +++ b/game/version.py @@ -1,9 +1,9 @@ from pathlib import Path -MAJOR_VERSION = 11 -MINOR_VERSION = 1 -MICRO_VERSION = 1 +MAJOR_VERSION = 12 +MINOR_VERSION = 0 +MICRO_VERSION = 0 VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION))