Bump version to 10.0.0.

This commit is contained in:
Dan Albert 2023-11-10 19:07:52 -08:00
parent a29fd7a14c
commit f8a72d8f22
3 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,11 @@
# 10.0.0
Saves from 9.x are not compatible with 10.0.0.
## Features/Improvements
## Fixes
# 9.0.0
Saves from 8.x are not compatible with 9.0.0.

View File

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

View File

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