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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.15.2 2025-10-30

- Files are automatically fixed during import if `auto-fix: true`.

## v0.15.1 2025-10-25

- Add support for beets 2.5
Expand Down
16 changes: 16 additions & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Development guide

## Releases

To release a new version of this project follow these steps:

1. `git fetch && git checkout -B release/candidate origin/main`
1. Replace the “Upcoming” heading of the changelog with the new version number
and date of release.
1. Update the version in `pyproject.toml`
1. Run `uv lock`
1. Commit the changes with the commit message “release: vX.Y.Z”
1. Push the changes `git push origin` and wait for the build to pass.
1. Build the package: `rm -rf dist && uv build`
1. Publish the package: `uv publish`
1. Merge release candidate into main branch
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "beets-check"
version = "0.15.1"
version = "0.15.2"
description = "beets plugin verifying file integrity with checksums"
authors = [{ name = "Thomas Scholtes", email = "geigerzaehler@axiom.fm" }]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading