Skip to content

Commit

Permalink
v11.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon authored Jul 16, 2024
1 parent 3eda489 commit 8823497
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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: |
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

**11.0.2** (2024-07-16)
* Fixed GitHub actions bug

**11.0.1** (2024-07-16)
* Updated GitHub actions

Expand Down
2 changes: 1 addition & 1 deletion ambient_toolbox/__init__.py
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]
Expand Down

0 comments on commit 8823497

Please sign in to comment.