Skip to content

Commit

Permalink
[changelog] Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Jan 5, 2022
1 parent 637fb80 commit ea2c5ef
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 15 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.5.0/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.5.0/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.5.0/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.5.0/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.5.0/.github/update_mailmap.py)"
- uses: peter-evans/[email protected]
with:
assignees: ${{ github.actor }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
# sources.
from: >-
${{ inputs.label-files ||
'https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labels.yaml' }}
'https://raw.githubusercontent.com/kdeldycke/workflows/v0.5.0/.github/labels.yaml' }}
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.5.0/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.5.0/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.5.0/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.5.0/.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.5.0 (unreleased)](https:/kdeldycke/workflows/compare/v0.4.8...main)

```{{important}}
This version is not released yet and is under active development.
```
## [0.5.0 (2022-01-05)](https:/kdeldycke/workflows/compare/v0.4.8...v0.5.0)

- Add a reuseable workflow to maintain GitHub labels.
- Add a set of default emoji-based labels.
Expand Down

0 comments on commit ea2c5ef

Please sign in to comment.