Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [2.0.0](https://github.com/snakemake/snakefmt/compare/v1.1.0...v2.0.0) (2026-05-22)


### ⚠ BREAKING CHANGES

* shell blocks in rules are now formatted by shfmt by default. Existing Snakefiles may see whitespace and structure changes in their shell directives. Use `--no-format-shell` or `format_shell = false` in `pyproject.toml` to opt out.

### Features

* format shell directives using shfmt ([#295](https://github.com/snakemake/snakefmt/issues/295)) ([a8d131b](https://github.com/snakemake/snakefmt/commit/a8d131b62d88c503d55d8b2e2ebc6a94c28a34d4))

## [1.1.0](https://github.com/snakemake/snakefmt/compare/v1.0.0...v1.1.0) (2026-04-07)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "snakefmt"
version = "1.1.0"
version = "2.0.0"
description = "The uncompromising Snakemake code formatter"
authors = [
{ name = "Michael Hall", email = "mhaldini@icloud.com" },
Expand Down
Loading