From 170e43200801621dc53432d719e014aef73c2127 Mon Sep 17 00:00:00 2001 From: Raffson Date: Mon, 14 Apr 2025 21:24:32 +0200 Subject: [PATCH] Preparations for v1.5.0 --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 +- .github/ISSUE_TEMPLATE/new-game-bug.yml | 2 +- changelog.md | 7 +++++++ docs/conf.py | 4 ++-- game/version.py | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 5d042709..a2323b42 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 test/development build, select "Test build" or "Development build" and provide a link to the applicable build in the field below. options: - - v1.3.1 + - v1.4.0 - Test build - type: input attributes: diff --git a/.github/ISSUE_TEMPLATE/new-game-bug.yml b/.github/ISSUE_TEMPLATE/new-game-bug.yml index 39f941be..1f85f0cc 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 test/development build, select "Test build" or "Development build" and provide a link to the applicable build in the field below. options: - - 1.3.1 + - 1.4.0 - Test build - type: input attributes: diff --git a/changelog.md b/changelog.md index 7b428643..e853a08a 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,10 @@ +# Retribution v1.5.0 + +## Features/Improvements + +## Fixes + + # Retribution v1.4.0 ## Features/Improvements diff --git a/docs/conf.py b/docs/conf.py index 556f00f9..6ecbcaf7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -7,9 +7,9 @@ # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information project = "DCS Retribution" -copyright = "2024, DCS Retribution Team" +copyright = "2025, DCS Retribution Team" author = "DCS Retribution Team" -release = "1.4.0" +release = "1.5.0" # -- 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 ee43eed0..569b413a 100644 --- a/game/version.py +++ b/game/version.py @@ -2,7 +2,7 @@ from pathlib import Path MAJOR_VERSION = 1 -MINOR_VERSION = 4 +MINOR_VERSION = 5 MICRO_VERSION = 0