Skip to content

Commit

Permalink
[changelog] Release v0.8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Mar 4, 2022
1 parent f4a9826 commit c482eae
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 20 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/autofix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Install pyupgrade
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/requirements.txt
- name: Extract minimal Python version from Poetry specs
id: py_version
shell: python
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Install Black and isort
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/requirements.txt
- name: Run isort
run: |
isort .
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Install mdformat
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/requirements.txt
- name: Auto-format Markdown
run: |
find ./ -iname "*.md" -exec mdformat --wrap 79 "{}" \;
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install bumpversion
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/requirements.txt
- name: ${{ matrix.part }} version bump
run: |
bumpversion --verbose ${{ matrix.part }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Install bumpversion
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/requirements.txt
- name: Extract version
id: get_version
# Docs: https://docs.github.com/en/actions/learn-github-actions
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
- name: Add new changelog entry
run: >
python -c "$(curl -fsSL
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/update_changelog.py)"
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/.github/update_changelog.py)"
- name: Version bump
run: |
bumpversion --verbose patch
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Generate .mailmap
run: >
python -c "$(curl -fsSL
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/update_mailmap.py)"
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/.github/update_mailmap.py)"
- uses: peter-evans/[email protected]
with:
assignees: ${{ github.actor }}
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
if: steps.poetry_detection.outputs.is_poetry
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/requirements.txt
- name: Extract package name
if: steps.poetry_detection.outputs.is_poetry
id: package_name
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
- name: Install pipdeptree
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/requirements.txt
- name: Install Graphviz
run: |
sudo apt install graphviz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeller-file-based.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Download default rules
run: >
curl -fsSL --output ./.github/labeller-file-based.yaml
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labeller-file-based.yaml
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/.github/labeller-file-based.yaml
- name: Extend default rules
if: ${{ inputs.extra-rules }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
with:
skip_delete: true
from: |
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labels.yaml
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/.github/labels.yaml
${{ inputs.extra-label-files }}
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install Pylint
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/requirements.txt
- name: Run Pylint
if: hashFiles('**/*.py')
# Docs:
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Install yamllint
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/requirements.txt
- name: Run yamllint
run: |
yamllint --strict --config-data "{rules: {line-length: {max: 120}}}" --format github .
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
if: steps.poetry_detection.outputs.is_poetry
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/requirements.txt
- name: Extract package name
if: steps.poetry_detection.outputs.is_poetry
id: package_name
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
- name: Install twine and check-wheel-contents
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v0.8.6/requirements.txt
- name: Validates package metadata
run: |
poetry check --no-interaction --no-ansi
Expand Down
6 changes: 1 addition & 5 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
# Changelog

## [0.8.6 (unreleased)](https:/kdeldycke/workflows/compare/v0.8.5...main)

```{{important}}
This version is not released yet and is under active development.
```
## [0.8.6 (2022-03-04)](https:/kdeldycke/workflows/compare/v0.8.5...v0.8.6)

- Reactivate sponsor auto-tagging workflow now that it has been fixed upstream.

Expand Down

0 comments on commit c482eae

Please sign in to comment.