From 0471e11c9c549e2b733ebfceba045648642b5c8e Mon Sep 17 00:00:00 2001 From: Riccardo Orlando Date: Thu, 12 Sep 2024 10:23:02 +0000 Subject: [PATCH] Update version.py to increment the patch number to 7 --- relik/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relik/version.py b/relik/version.py index 94e759c..e542a81 100644 --- a/relik/version.py +++ b/relik/version.py @@ -4,7 +4,7 @@ _MINOR = "0" # On main and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "6" +_PATCH = "7" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. _SUFFIX = os.environ.get("RELIK_VERSION_SUFFIX", "")