Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jtherrmann committed Dec 17, 2024
1 parent d21cc82 commit b02bec1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/reusable-ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
python -m pip install ruff
- name: Ruff linting check
run: ruff check --output-format=github .; echo 'To automatically fix errors, run `ruff check --fix .`'
# To automatically fix errors, run `ruff check --fix .`
run: ruff check --output-format=github .

- name: Ruff format check
run: ruff format --diff .; echo 'To automatically fix errors, run `ruff format .`'
# To automatically fix errors, run `ruff format .`
run: ruff format --diff .
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.13.2]

### Fixed
- Fix a bug in which [`reusable-ruff`](.github/workflows/reusable-ruff.yml) errors did not cause the action to fail.

## [0.13.1]

### Changed
Expand Down

0 comments on commit b02bec1

Please sign in to comment.