Skip to content

Commit

Permalink
[changelog] Release v0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Jan 3, 2022
1 parent 4790393 commit 84fefd3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 14 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.4.3/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.4.3/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.4.3/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.4.3/requirements.txt
- name: Extract current 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 @@ -75,7 +75,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.4.3/.github/update_mailmap.py)"
- uses: peter-evans/create-pull-request@v3.12.0
with:
assignees: ${{ github.actor }}
Expand Down
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.4.3/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.4.3/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 @@ -57,7 +57,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.4.3/requirements.txt
- name: Re-target main branch in workflows
run: >
DEFAULT_BRANCH="main" && bumpversion --verbose --no-configured-files
Expand All @@ -69,7 +69,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.4.3/.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.4.3 (unreleased)](https://github.com/kdeldycke/workflows/compare/v0.4.2...main)

```{{important}}
This version is not released yet and is under active development.
```
## [0.4.3 (2022-01-03)](https://github.com/kdeldycke/workflows/compare/v0.4.2...v0.4.3)

- Only match first occurence of triple-backticks delimited block text in `changelog.md` in `prepare-release` job. Also matches empty line within the block.
- Make GitHub changelog URL update more forgiving.
Expand Down

0 comments on commit 84fefd3

Please sign in to comment.