From 882ef7026f116daa74eb2ca184fd8ca4a12f3165 Mon Sep 17 00:00:00 2001 From: Ellen Marie Dash Date: Mon, 26 Feb 2024 22:24:41 -0500 Subject: [PATCH] Fix release task condition; bump version to v8.0.1. --- .cirrus.yml | 2 +- emanate/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index a919b03..aa07388 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -93,7 +93,7 @@ success_task: # If the `version` file is modified on the main branch, make a release. Release_task: - only_if: "changesInclude('version') && $BRANCH == 'main' && $CIRRUS_CRON == ''" + only_if: "changesInclude('emanate/version.py') && $BRANCH == 'main' && $CIRRUS_CRON == ''" depends_on: [CI success] env: TWINE_USERNAME: "__token__" diff --git a/emanate/version.py b/emanate/version.py index 084223f..470ace2 100644 --- a/emanate/version.py +++ b/emanate/version.py @@ -1,4 +1,4 @@ # This file should only ever be modified to change the version. # This will automatically prepare and create a release. -__version__ = "8.0.0" +__version__ = "8.0.1"