From e89b647dfadeeaa66b919b94174b77e613aea4b6 Mon Sep 17 00:00:00 2001 From: Deivid Soto Date: Fri, 8 May 2026 17:23:19 +0200 Subject: [PATCH] chore(release): 0.8.1 - Bump version to 0.8.1 - Update CHANGELOG.md --- CHANGELOG.md | 22 ++++++++++++++++++++++ internal/cmd/version.go | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5563905..55bd493 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.1] - 2026-05-08 + + +### Added + +- **config**: set default values for WebRTC and transcoding in minimal TOML config +- **transcode**: dynamic H.264 level + HW probe + capability reporting + +### Changed + +- **streaming**: improve signal handling and remove unused components + +### Fixed + +- **self-update**: auto-restart live daemon after upgrade +- **streaming**: allow HLS sessions when webrtc disabled + +### Other + +- **gitignore**: add dist-ffbinaries to ignored files ## [0.8.0] - 2026-05-08 @@ -31,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other +- **release**: 0.8.0 - **streaming**: post-review fixes — race lock, dead branch, stderr cap - **torrent**: bump anacrolix log level Critical → Warning for visibility ## [0.7.0] - 2026-04-10 @@ -291,6 +312,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - remove UPX compression (antivirus false positives, startup penalty) - add -s -w -trimpath to Makefile, add build-small target with UPX +[0.8.1]: https://github.com/torrentclaw/unarr/compare/v0.8.0...v0.8.1 [0.8.0]: https://github.com/torrentclaw/unarr/compare/v0.7.0...v0.8.0 [0.7.0]: https://github.com/torrentclaw/unarr/compare/v0.6.8...v0.7.0 [0.6.8]: https://github.com/torrentclaw/unarr/compare/v0.6.7...v0.6.8 diff --git a/internal/cmd/version.go b/internal/cmd/version.go index 3286d27..860f68c 100644 --- a/internal/cmd/version.go +++ b/internal/cmd/version.go @@ -1,4 +1,4 @@ package cmd // Version is the CLI version. Overridden by goreleaser ldflags at release time. -var Version = "0.8.0" +var Version = "0.8.1"