From 7543b5f79f89f73888353f0263b195ad50ff8544 Mon Sep 17 00:00:00 2001 From: zhexu14 <64713351+zhexu14@users.noreply.github.com> Date: Sat, 22 Jun 2024 17:23:08 +1000 Subject: [PATCH] =?UTF-8?q?Bump=20version=20to=2011.1.1=20to=20include=20c?= =?UTF-8?q?ampaign=20updates=20as=2011.1.0=20was=20alre=E2=80=A6=20(#3415)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …ady taken --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 +- .github/ISSUE_TEMPLATE/new-game-bug.yml | 2 +- changelog.md | 4 ++-- docs/conf.py | 2 +- game/version.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 4dbc8c91..6daedce3 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 93ca9b09..5d146870 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 df676cf8..9a3c12dc 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 acd47cae..79b7ec28 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 512bbbb0..9b95be9c 100644 --- a/game/version.py +++ b/game/version.py @@ -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))