diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21c6b46..c27a0f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - name: Run pre-commit hooks run: pre-commit run --all-files --hook-stage push - + validate_migrations: name: Validate migrations runs-on: ubuntu-22.04 @@ -64,8 +64,8 @@ jobs: - name: Upload coverage data uses: actions/upload-artifact@v4 with: - name: coverage-data - path: '.coverage${{ matrix.python-version }}-${{ matrix.django-version }}*' + name: coverage-data-${{ matrix.python-version }}-${{ matrix.django-version }} + path: '.coverage*' coverage: name: Coverage @@ -84,7 +84,8 @@ jobs: - name: Download data uses: actions/download-artifact@v4 with: - name: coverage-data + pattern: coverage-data* + merge-multiple: true - name: Combine coverage and fail if it's <86.29% run: | diff --git a/CHANGES.md b/CHANGES.md index 3f54a31..fc1ec14 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ # Changelog +**11.0.2** (2024-07-16) + * Fixed GitHub actions bug + **11.0.1** (2024-07-16) * Updated GitHub actions diff --git a/ambient_toolbox/__init__.py b/ambient_toolbox/__init__.py index 05810d2..8d3423a 100644 --- a/ambient_toolbox/__init__.py +++ b/ambient_toolbox/__init__.py @@ -1,3 +1,3 @@ """Python toolbox of Ambient Digital containing an abundance of useful tools and gadgets.""" -__version__ = "11.0.1" +__version__ = "11.0.2" diff --git a/pyproject.toml b/pyproject.toml index 170e27d..1e69432 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ dev = [ 'mistune<2.0.0', 'flit~=3.9', 'keyring~=25.2', - 'ambient-package-update~=24.7.5', + 'ambient-package-update~=24.7.6', 'gevent~=23.9', 'httpx~=0.27', ]