From 8aa38a83ff5b4448a48ea3da52b4229bba9099a8 Mon Sep 17 00:00:00 2001 From: zhexu14 <64713351+zhexu14@users.noreply.github.com> Date: Wed, 10 Apr 2024 12:54:26 +1000 Subject: [PATCH] Bump version to 12 (#3370) Bump changelog, bug reports and version.py to appropriate values now that 11 is released. --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 +- .github/ISSUE_TEMPLATE/new-game-bug.yml | 2 +- changelog.md | 8 ++++++++ docs/conf.py | 2 +- game/version.py | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 25ea1fdc..4dbc8c91 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -31,7 +31,7 @@ body: If the bug was found in a development build, select "Development build" and provide a link to the build in the field below. options: - - 10.0.0 + - 11.0.0 - Development build - type: textarea attributes: diff --git a/.github/ISSUE_TEMPLATE/new-game-bug.yml b/.github/ISSUE_TEMPLATE/new-game-bug.yml index ef2dda5a..93ca9b09 100644 --- a/.github/ISSUE_TEMPLATE/new-game-bug.yml +++ b/.github/ISSUE_TEMPLATE/new-game-bug.yml @@ -39,7 +39,7 @@ body: If the bug was found in a development build, select "Development build" and provide a link to the build in the field below. options: - - 10.0.0 + - 11.0.0 - Development build - type: textarea attributes: diff --git a/changelog.md b/changelog.md index c166c3e5..ae41b8d4 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,11 @@ +# 12.0.0 + +Saves from 11.x are not compatible with 12.0.0. + +## Features/Improvements + +## Fixes + # 11.0.0 Saves from 10.x are not compatible with 11.0.0. diff --git a/docs/conf.py b/docs/conf.py index c39fd197..7f220b18 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 = "11.0.0" +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 bcc31dec..c100d9bb 100644 --- a/game/version.py +++ b/game/version.py @@ -1,7 +1,7 @@ from pathlib import Path -MAJOR_VERSION = 11 +MAJOR_VERSION = 12 MINOR_VERSION = 0 MICRO_VERSION = 0 VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION))