diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index bc3881c5..c99ff7fa 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: - - 12.0.1 + - 13.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 0ea2b32c..450b31e2 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: - - 12.0.1 + - 13.0.0 - Development build - type: textarea attributes: diff --git a/changelog.md b/changelog.md index 440a0129..b392bac7 100644 --- a/changelog.md +++ b/changelog.md @@ -1,10 +1,10 @@ -# 12.1.0 +# 13.0.0 -Saves from 12.x are compatible with 12.1.0. +Saves from 12.x are not compatible with 13.0.0. ## Features/Improvements -* **[Engine]** Support for DCS 2.9.10.3948. +* **[Engine]** Support for DCS 2.9.12.5536. * **[Data]** Support for CH-47 Chinook. ## Fixes @@ -12,6 +12,8 @@ Saves from 12.x are compatible with 12.1.0. * **[Data]** Added/updated CBU weapons data. * **[Data]** Added Strike mission type for KA-50 (all playable variants). * **[Mission Generation]** Fixed crash when using factions that have Eastern callsign conventions. +* **[Mission Generation]** Fixed issues when spawning on carriers and FARPs in multiplayer sessions. + # 12.0.0 diff --git a/docs/conf.py b/docs/conf.py index 8c3175e0..0d3a6b1b 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 = "2024, DCS Liberation Team" +copyright = "2025, DCS Liberation Team" author = "DCS Liberation Team" -release = "12.0.0" +release = "13.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 6beb9c03..4e7c273b 100644 --- a/game/version.py +++ b/game/version.py @@ -1,8 +1,8 @@ from pathlib import Path -MAJOR_VERSION = 12 -MINOR_VERSION = 1 +MAJOR_VERSION = 13 +MINOR_VERSION = 0 MICRO_VERSION = 0 VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION))