From 76140178280ee95b7a844816d3270e3ef3ad37c2 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Tue, 23 May 2023 01:31:53 -0700 Subject: [PATCH] Bump version to 7.0.1. --- docs/conf.py | 2 +- game/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 3e30dc26..e16314c2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = "DCS Liberation" copyright = "2023, DCS Liberation Team" author = "DCS Liberation Team" -release = "7.0.0" +release = "7.0.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 81330d5d..6dcf8685 100644 --- a/game/version.py +++ b/game/version.py @@ -3,7 +3,7 @@ from pathlib import Path MAJOR_VERSION = 7 MINOR_VERSION = 0 -MICRO_VERSION = 0 +MICRO_VERSION = 1 VERSION_NUMBER = ".".join(str(v) for v in (MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION))