Skip to content

Commit 6447930

Browse files
authored
Bump version to 13, update changelog (#3486)
1 parent 5430457 commit 6447930

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ body:
3131
If the bug was found in a development build, select "Development build"
3232
and provide a link to the build in the field below.
3333
options:
34-
- 12.0.1
34+
- 13.0.0
3535
- Development build
3636
- type: textarea
3737
attributes:

.github/ISSUE_TEMPLATE/new-game-bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ body:
3939
If the bug was found in a development build, select "Development build"
4040
and provide a link to the build in the field below.
4141
options:
42-
- 12.0.1
42+
- 13.0.0
4343
- Development build
4444
- type: textarea
4545
attributes:

changelog.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1-
# 12.1.0
1+
# 13.0.0
22

3-
Saves from 12.x are compatible with 12.1.0.
3+
Saves from 12.x are not compatible with 13.0.0.
44

55
## Features/Improvements
66

7-
* **[Engine]** Support for DCS 2.9.10.3948.
7+
* **[Engine]** Support for DCS 2.9.12.5536.
88
* **[Data]** Support for CH-47 Chinook.
99

1010
## Fixes
1111

1212
* **[Data]** Added/updated CBU weapons data.
1313
* **[Data]** Added Strike mission type for KA-50 (all playable variants).
1414
* **[Mission Generation]** Fixed crash when using factions that have Eastern callsign conventions.
15+
* **[Mission Generation]** Fixed issues when spawning on carriers and FARPs in multiplayer sessions.
16+
1517

1618
# 12.0.0
1719

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

99
project = "DCS Liberation"
10-
copyright = "2024, DCS Liberation Team"
10+
copyright = "2025, DCS Liberation Team"
1111
author = "DCS Liberation Team"
12-
release = "12.0.0"
12+
release = "13.0.0"
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

game/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from pathlib import Path
22

33

4-
MAJOR_VERSION = 12
5-
MINOR_VERSION = 1
4+
MAJOR_VERSION = 13
5+
MINOR_VERSION = 0
66
MICRO_VERSION = 0
77
VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION))
88

0 commit comments

Comments
 (0)