diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 4dbc8c913..6daedce32 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: - - 11.0.0 + - 11.1.1 - Development build - type: textarea attributes: diff --git a/.github/ISSUE_TEMPLATE/new-game-bug.yml b/.github/ISSUE_TEMPLATE/new-game-bug.yml index 93ca9b09a..5d1468704 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: - - 11.0.0 + - 11.1.1 - Development build - type: textarea attributes: diff --git a/changelog.md b/changelog.md index df676cf86..9a3c12dcd 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/docs/conf.py b/docs/conf.py index acd47cae6..79b7ec285 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 diff --git a/game/version.py b/game/version.py index 512bbbb04..9b95be9c3 100644 --- a/game/version.py +++ b/game/version.py @@ -3,7 +3,7 @@ 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))