Skip to content

Commit

Permalink
11.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Jul 16, 2024
1 parent c405287 commit 3eda489
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ jobs:
TOXENV: django${{ matrix.django-version }}
run: tox
- name: Upload coverage data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-data
path: '.coverage*'
path: '.coverage${{ matrix.python-version }}-${{ matrix.django-version }}*'

coverage:
name: Coverage
Expand All @@ -82,7 +82,7 @@ jobs:
run: python -m pip install --upgrade coverage[toml]

- name: Download data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-data

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.1** (2024-07-16)
* Updated GitHub actions

**11.0.0** (2024-07-15)
* Dropped Python 3.8 support
* Replaced underlying bleach package with nh3 in `BleacherMixin`
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.0"
__version__ = "11.0.1"
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.3',
'ambient-package-update~=24.7.5',
'gevent~=23.9',
'httpx~=0.27',
]
Expand Down

0 comments on commit 3eda489

Please sign in to comment.