Bump version to 12 (#3370)

Bump changelog, bug reports and version.py to appropriate values now
that 11 is released.
This commit is contained in:
zhexu14 2024-04-10 12:54:26 +10:00 committed by GitHub
parent 7d5bb0356f
commit 8aa38a83ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 12 additions and 4 deletions

View File

@ -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:

View File

@ -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:

View File

@ -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.

View File

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

View File

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