From 13ff69c4df3c8b5ee09572d9b1749d061f494129 Mon Sep 17 00:00:00 2001 From: zhexu14 <64713351+zhexu14@users.noreply.github.com> Date: Mon, 22 Apr 2024 22:55:39 +1000 Subject: [PATCH] Set next version as 11.1 (#3382) This PR sets versions & changelog to a 11.1 bugfix release. --- changelog.md | 7 +++---- docs/conf.py | 4 ++-- game/version.py | 4 ++-- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/changelog.md b/changelog.md index fbe9927c..651fdca6 100644 --- a/changelog.md +++ b/changelog.md @@ -1,8 +1,6 @@ -# 12.0.0 +# 11.1.0 -Saves from 11.x are not compatible with 12.0.0. - -## Features/Improvements +Saves from 11.0.0 are compatible with 11.1.0. ## Fixes @@ -10,6 +8,7 @@ Saves from 11.x are not compatible with 12.0.0. * **[Campaign]** Fixed error where frontline units are not re-deployed when multiple control points were captured in one turn or when control points are captured "out of order" using air-assault missions. * **[Cheat Menu]** Re-deploy frontline units when using cheats to capture control points, so that cheats behave the same way as capturing a control point in-mission. * **[Flight Planning]** Theater refuelling flight plans (those not tied to a particular package) will remain on station for a longer period, specifically the desired mission duration + 30 minutes. By default, this increases the on-station time from 1 hour to 1.5 hours. +* **[Mission Generation]** Patched bug where Liberation crashed when aborting a turn when Fighter Sweep missions were planned. * **[UI]** Naval control points (carriers, LHAs) can no longer be moved onto land. diff --git a/docs/conf.py b/docs/conf.py index 7f220b18..acd47cae 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -7,9 +7,9 @@ # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information project = "DCS Liberation" -copyright = "2023, DCS Liberation Team" +copyright = "2024, DCS Liberation Team" author = "DCS Liberation Team" -release = "12.0.0" +release = "11.1.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 c100d9bb..512bbbb0 100644 --- a/game/version.py +++ b/game/version.py @@ -1,8 +1,8 @@ from pathlib import Path -MAJOR_VERSION = 12 -MINOR_VERSION = 0 +MAJOR_VERSION = 11 +MINOR_VERSION = 1 MICRO_VERSION = 0 VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION))