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))