Skip to content

Commit

Permalink
v3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Jul 16, 2024
1 parent bdcb26a commit 66262a3
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 @@ -47,9 +47,9 @@ 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
name: coverage-data-${{ matrix.python-version }}-${{ matrix.django-version }}
path: '.coverage*'

coverage:
Expand All @@ -67,9 +67,10 @@ 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
pattern: coverage-data*
merge-multiple: true

- name: Combine coverage and fail if it's <100.0%
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

**3.1.2**
* Updated GitHub actions

**3.1.1**
* Black-end documentation code

Expand Down
2 changes: 1 addition & 1 deletion django_dynamic_admin_forms/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Add simple dynamic interaction to the otherwise static django admin."""

__version__ = "3.1.1"
__version__ = "3.1.2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dev = [
'mistune<2.0.0',
'flit~=3.9',
'keyring~=25.2',
'ambient-package-update~=24.7.3',
'ambient-package-update~=24.7.6',
'unittest-parametrize~=1.4',
]

Expand Down

0 comments on commit 66262a3

Please sign in to comment.