Skip to content

Commit

Permalink
[changelog] Release v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Jan 8, 2022
1 parent 13c8039 commit 8898ce9
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/autofix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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.6.1/requirements.txt
- name: Run isort
run: |
isort .
Expand Down Expand Up @@ -56,7 +56,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.6.1/requirements.txt
- name: Auto-format Markdown
run: |
find ./ -iname "*.md" -exec mdformat --wrap 79 "{}" \;
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,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.6.1/requirements.txt
- name: ${{ matrix.part }} version bump
run: |
bumpversion --verbose ${{ matrix.part }}
Expand Down Expand Up @@ -85,7 +85,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.6.1/requirements.txt
- name: Extract version
id: get_version
# Docs: https://docs.github.com/en/actions/learn-github-actions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,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.6.1/.github/update_mailmap.py)"
- uses: peter-evans/[email protected]
with:
assignees: ${{ github.actor }}
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 @@ -18,7 +18,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.6.1/.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.6.1/.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 @@ -32,7 +32,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.6.1/requirements.txt
- name: Run Pylint
if: hashFiles('**/*.py')
# Docs:
Expand Down Expand Up @@ -76,7 +76,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.6.1/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 @@ -66,7 +66,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.6.1/requirements.txt
- name: Re-target main branch in workflows
# This step is only used in the original repository to automate remote URL tagging.
if: github.repository == 'kdeldycke/workflows'
Expand All @@ -82,7 +82,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.6.1/.github/update_changelog.py)"
- name: Version bump
run: |
bumpversion --verbose patch
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.6.1 (unreleased)](https:/kdeldycke/workflows/compare/v0.6.0...main)

```{{important}}
This version is not released yet and is under active development.
```
## [0.6.1 (2022-01-08)](https:/kdeldycke/workflows/compare/v0.6.0...v0.6.1)

- Fix extension of default labelling rules.

Expand Down

0 comments on commit 8898ce9

Please sign in to comment.