Branch 7.1.0.

This commit is contained in:
Dan Albert 2023-05-25 21:16:02 -07:00
parent 7614017828
commit fe60757891
2 changed files with 3 additions and 3 deletions

View File

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

View File

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