File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 1.0.1] - 2024-04-19
9+
10+ ### Fixed
11+
12+ - Fix ruff command to use the now mandatory ` check ` command for fixing
13+
14+ ### Added
15+
816## [ 1.0.0] - 2024-02-13
917
1018### Added
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ def fix_black(ctx: Context, args: str = "."):
9292def fix_ruff (ctx : Context , args : str = "." ):
9393 """fix all ruff rules"""
9494 args = args or "." # needed for hatch script
95- ctx .run (f"ruff --fix { args } " , pty = use_pty )
95+ ctx .run (f"ruff check --fix { args } " , pty = use_pty )
9696
9797
9898@task (
You can’t perform that action at this time.
0 commit comments