Skip to content

Commit

Permalink
[changelog] Release v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Jun 23, 2022
1 parent 2861754 commit 2fafa20
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/autofix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,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/v1.5.0/requirements.txt
- name: Extract minimal Python version from Poetry specs
id: py_version
shell: python
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Install requirements
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v1.5.0/requirements.txt
- name: Run isort
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#isort
run: |
Expand Down Expand Up @@ -170,7 +170,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/v1.5.0/requirements.txt
- name: Auto-format Markdown
run: |
find ./ -iname "*.md" -exec mdformat "{}" \;
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,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/v1.5.0/requirements.txt
- name: ${{ matrix.part }} version bump
run: |
bumpversion --verbose ${{ matrix.part }}
Expand Down Expand Up @@ -108,7 +108,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/v1.5.0/requirements.txt
- name: Extract version
id: get_version
# Docs: https://docs.github.com/en/actions/learn-github-actions
Expand Down Expand Up @@ -169,7 +169,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/v1.5.0/.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 @@ -114,7 +114,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/v1.5.0/.github/update_mailmap.py)"
- uses: peter-evans/[email protected]
with:
assignees: ${{ github.actor }}
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
if: steps.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/v1.5.0/requirements.txt
- name: Extract package name
if: steps.detection.outputs.is_poetry
id: extract_name
Expand Down Expand Up @@ -195,7 +195,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/v1.5.0/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 @@ -34,7 +34,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/v1.5.0/.github/labeller-file-based.yaml
- name: Extend default rules
if: ${{ inputs.extra-rules }}
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
skip_delete: true
from: |
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labels.yaml
https://raw.githubusercontent.com/kdeldycke/workflows/v1.5.0/.github/labels.yaml
${{ inputs.extra-label-files }}
${{ startsWith(github.event.repository.name, 'awesome-') &&
'https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labels-awesome.yaml' || '' }}
'https://raw.githubusercontent.com/kdeldycke/workflows/v1.5.0/.github/labels-awesome.yaml' || '' }}
6 changes: 3 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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/v1.5.0/requirements.txt
- name: Run Pylint
# Docs:
# http://pylint.pycqa.org/en/latest/technical_reference/features.html
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Install pydocstyle
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v1.5.0/requirements.txt
- name: Run pydocstyle
# Do not fail job on doc style errors. Linting docstrings is informative only.
# Search in all directories, including those starting with a dot.
Expand All @@ -102,7 +102,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/v1.5.0/requirements.txt
- name: Run yamllint
run: |
yamllint --strict --config-data "{rules: {line-length: {max: 120}}}" --format github .
Expand Down
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.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/v1.5.0/requirements.txt
- name: Extract package name
if: steps.detection.outputs.is_poetry
id: extract_name
Expand Down Expand Up @@ -183,7 +183,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/v1.5.0/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

## [1.5.0 (unreleased)](https:/kdeldycke/workflows/compare/v1.4.2...main)

```{important}
This version is not released yet and is under active development.
```
## [1.5.0 (2022-06-23)](https:/kdeldycke/workflows/compare/v1.4.2...v1.5.0)

- Auto-remove unused imports in Python code. Add dependency on `pycln`.
- Freeze Python version used to run all code to the `3.10` series.
Expand Down

0 comments on commit 2fafa20

Please sign in to comment.