Bump version to 11.1.1 to include campaign updates as 11.1.0 was alre… (#3415)

…ady taken
This commit is contained in:
zhexu14 2024-06-22 17:23:08 +10:00 committed by GitHub
parent 708402b955
commit 7543b5f79f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 6 additions and 6 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:
- 11.0.0
- 11.1.1
- 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:
- 11.0.0
- 11.1.1
- Development build
- type: textarea
attributes:

View File

@ -1,6 +1,6 @@
# 11.1.0
# 11.1.1
Saves from 11.0.0 are compatible with 11.1.0. See Known Issues section for exceptions.
Saves from 11.0.0 are compatible with 11.1.1. See Known Issues section for exceptions.
## Features/Improvements

View File

@ -9,7 +9,7 @@
project = "DCS Liberation"
copyright = "2024, DCS Liberation Team"
author = "DCS Liberation Team"
release = "11.1.0"
release = "11.1.1"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

View File

@ -3,7 +3,7 @@ from pathlib import Path
MAJOR_VERSION = 11
MINOR_VERSION = 1
MICRO_VERSION = 0
MICRO_VERSION = 1
VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION))