Skip to content

Commit

Permalink
[changelog] Release v2.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed May 22, 2023
1 parent a54ac56 commit eb9ea3a
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 31 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/autofix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ jobs:
- name: Install Poetry
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/requirements.txt
- name: Project metadata
id: project-metadata
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: >
python -c "$(curl -fsSL
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/metadata.py)"
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/.github/metadata.py)"
format-python:
name: Format Python
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Install ruff, black, blacken-docs, autopep8 and docformatter
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/requirements.txt
- name: Run Ruff
# --select=ALL - Autofix everything.
# Includes rules in the nursery, a collection of newer lints that are still under development.
Expand Down Expand Up @@ -153,7 +153,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/v2.15.1/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/v2.15.1/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/v2.15.1/requirements.txt
- name: Extract version
id: get_version
# Docs: https://docs.github.com/en/actions/learn-github-actions
Expand Down Expand Up @@ -196,7 +196,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/v2.15.1/.github/update_changelog.py)"
- name: Version bump
run: |
bumpversion --verbose patch
Expand Down
12 changes: 6 additions & 6 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/v2.15.1/.github/update_mailmap.py)"
- uses: peter-evans/create-pull-request@v5.0.1
with:
assignees: ${{ github.actor }}
Expand Down Expand Up @@ -157,14 +157,14 @@ jobs:
- name: Install Poetry
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/requirements.txt
- name: Project metadata
id: project-metadata
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: >
python -c "$(curl -fsSL
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/metadata.py)"
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/.github/metadata.py)"
update-deps-graph:
name: Update dependency graph
Expand All @@ -183,7 +183,7 @@ jobs:
- name: Install pinned pipdeptree on system
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/requirements.txt
- name: Install project with Poetry
run: |
poetry install --only main --no-interaction --no-ansi
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
- name: Install Poetry
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/requirements.txt
- name: Install project dependencies
run: |
poetry install --no-interaction --no-ansi
Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
- name: Install Poetry
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/requirements.txt
- name: Install project dependencies
# Let sphinx-click access project's code to generate CLI help.
run: |
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/v2.15.1/.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/v2.15.1/.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/v2.15.1/.github/labels-awesome.yaml' || '' }}
10 changes: 5 additions & 5 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ jobs:
- name: Install Poetry
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/requirements.txt
- name: Project metadata
id: project-metadata
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: >
python -c "$(curl -fsSL
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/metadata.py)"
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/.github/metadata.py)"
lint-python:
needs:
Expand All @@ -66,7 +66,7 @@ jobs:
- name: Install Ruff
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/requirements.txt
- name: Run Ruff
# Runs with the default set of rules. Trust ruff to select a sensible subset.
run: >
Expand All @@ -89,7 +89,7 @@ jobs:
- name: Install Poetry and Mypy
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/requirements.txt
- name: Install project with Poetry
# Install project with Poetry if supported, so we can benefits from dependencies on typing stubs.
if: fromJSON(needs.project-metadata.outputs.is_poetry_project)
Expand Down Expand Up @@ -122,7 +122,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/v2.15.1/requirements.txt
- name: Run yamllint
run: |
yamllint --strict --config-data "{rules: {line-length: {max: 120}}}" --format github .
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ jobs:
- name: Install Poetry
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/requirements.txt
- name: Project metadata
id: project-metadata
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: >
python -c "$(curl -fsSL
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/metadata.py)"
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/.github/metadata.py)"
poetry-build:
name: "Poetry: build & check package"
Expand All @@ -89,7 +89,7 @@ jobs:
- name: Install poetry, 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/v2.15.1/requirements.txt
- name: Build package
run: |
poetry install --no-interaction --no-ansi
Expand Down Expand Up @@ -130,15 +130,15 @@ jobs:
- name: Install poetry
run: >
python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/requirements.txt
- name: Re-install Nuitka in Poetry venv
# Nuitka needs to be installed within Poetry's venv to allow for lots of workarounds.
# Additional dependencies:
# - ordered-set: used by Nuitka for compilation performance
# - zstandard: for nuitka's onefile compression
run: >
poetry run python -m pip install --requirement
https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements.txt
https://raw.githubusercontent.com/kdeldycke/workflows/v2.15.1/requirements.txt
- name: Nuitka + compilers versions
run: |
poetry run python -m nuitka --version
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

## [2.15.1 (unreleased)](https://github.com/kdeldycke/workflows/compare/v2.15.0...main)

```{important}
This version is not released yet and is under active development.
```
## [2.15.1 (2023-05-22)](https://github.com/kdeldycke/workflows/compare/v2.15.0...v2.15.1)

- Force colorized output of Mypy, as in CI it defaults to no color.
- Only activates all `ruff` rules for autofix, not linting.
Expand Down

0 comments on commit eb9ea3a

Please sign in to comment.