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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0"
".": "0.2.0"
}
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@
All notable changes will be documented here, using the [Keep A Changelog](https://keepachangelog.com/en/1.0.0/) formalism,
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)

## [0.2.0](https://github.com/LECOQQ/qbit-ops/compare/v0.1.0...v0.2.0) (2026-06-14)


### Features

* **backup:** add export diff command ([7ed1177](https://github.com/LECOQQ/qbit-ops/commit/7ed1177894dae0d09cadeb2ddbbedcef0f91325d))
* **backup:** add full export and harmonize audit JSON output ([f36dc1c](https://github.com/LECOQQ/qbit-ops/commit/f36dc1c846da43b0f7c40468e33f25fdf3aab88b))
* **cli:** add config doctor and torrent listing ([7e40a40](https://github.com/LECOQQ/qbit-ops/commit/7e40a40c60a08081dc475abe5592c6a7f11339b1))
* **torrents:** add bulk pause, resume and reannounce ([1bb9d70](https://github.com/LECOQQ/qbit-ops/commit/1bb9d70e1f2913dc981b583a5c47cb8595454ec6))
* **torrents:** add bulk start ([a254715](https://github.com/LECOQQ/qbit-ops/commit/a2547153a039175b137f5bda6baaffa1460f6280))
* **torrents:** add category listing and filtering ([33b3d12](https://github.com/LECOQQ/qbit-ops/commit/33b3d12e5c2cf4553a216a6702de804c4cb71448))
* **torrents:** add inspect command ([9758b0d](https://github.com/LECOQQ/qbit-ops/commit/9758b0d68d500af0b9dee13dfd06bed18f1749f1))
* **torrents:** add name search to inspect command ([724b4d0](https://github.com/LECOQQ/qbit-ops/commit/724b4d0f0fa8d527c3f0ae3df8e7e97140db1b19))
* **torrents:** add tracker filter to list command ([2e2d3a5](https://github.com/LECOQQ/qbit-ops/commit/2e2d3a5102701f1e4bd854a89c73f11b27b0694c))
* **torrents:** added --all for bulk operations ([5d6b923](https://github.com/LECOQQ/qbit-ops/commit/5d6b923733c3aed6d839b90cdc36335341b7736f))
* **trackers:** add bulk tracker replacement ([c9ce626](https://github.com/LECOQQ/qbit-ops/commit/c9ce6261496505136c31cac0b074a44400701b04))
* **trackers:** add health audit command ([f4cd938](https://github.com/LECOQQ/qbit-ops/commit/f4cd938216f21bcf64e9aef2492e08dbad625e44))
* **trackers:** add inspect, export and verbose output ([babdd54](https://github.com/LECOQQ/qbit-ops/commit/babdd5460b066b93adfb4358a1dcaabcc1ca5951))
* **trackers:** added exit codes ([5c66cd8](https://github.com/LECOQQ/qbit-ops/commit/5c66cd82be493bea2fcd74fb7842a39620b66768))


### Documentation

* updated badges and removed version section ([74d0e39](https://github.com/LECOQQ/qbit-ops/commit/74d0e3986be81dc9477f16aafc30b6d498bd6387))

## 0.1.0 (2026-06-13)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![CI](https://github.com/LECOQQ/qbit-ops/actions/workflows/ci.yml/badge.svg)](https://github.com/LECOQQ/qbit-ops/actions/workflows/ci.yml)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
[![Python](https://img.shields.io/badge/python-3.12-blue.svg)](pyproject.toml)
[![Version](https://img.shields.io/badge/version-0.1.0-blue.svg)](CHANGELOG.md) <!-- x-release-please-version -->
[![Version](https://img.shields.io/badge/version-0.2.0)](CHANGELOG.md) <!-- x-release-please-version -->

`qbit-ops` is a small qBittorrent operations CLI for homelab usage.

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "qbit-ops"
version = "0.1.0"
version = "0.2.0"
description = "qBittorrent administration CLI for homelab operations."
authors = []
readme = "README.md"
Expand Down Expand Up @@ -56,5 +56,5 @@ addopts = "-q --maxfail=1 --disable-warnings"

[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.0"
version = "0.2.0"
tag_format = "v$version"
Loading