From 46b508adf8290a32d00a59df1561a43d77ce65b9 Mon Sep 17 00:00:00 2001 From: hyugogirubato <65763543+hyugogirubato@users.noreply.github.com> Date: Fri, 11 Jul 2025 00:44:19 +0200 Subject: [PATCH] release v3.4.0 --- CHANGELOG.md | 7 +++++++ cbz/__main__.py | 1 + pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0488cb2..f511163 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.4.1] - 2025-07-11 + +### Fixed + +- Fix installation instructions. + ## [3.4.0] - 2025-07-09 ### Added @@ -193,6 +199,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Initial release. +[3.4.1]: https://github.com/hyugogirubato/cbz/releases/tag/v3.4.1 [3.4.0]: https://github.com/hyugogirubato/cbz/releases/tag/v3.4.0 [3.3.7]: https://github.com/hyugogirubato/cbz/releases/tag/v3.3.7 [3.3.6]: https://github.com/hyugogirubato/cbz/releases/tag/v3.3.6 diff --git a/cbz/__main__.py b/cbz/__main__.py index 91d6eba..1e2324f 100644 --- a/cbz/__main__.py +++ b/cbz/__main__.py @@ -25,6 +25,7 @@ def main() -> None: comic_info = ComicInfo.from_cbr(comic_path) else: comic_info = ComicInfo.from_cbz(comic_path) + # Launch the CBZ player comic_info.show() except Exception as e: diff --git a/pyproject.toml b/pyproject.toml index 27023b8..4722c24 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "cbz" -version = "3.4.0" +version = "3.4.1" description = "CBZ simplifies creating, managing, and viewing comic book files in CBZ, CBR, and PDF formats, offering seamless packaging, metadata handling and built-in viewing capabilities." license = "MIT" authors = ["hyugogirubato <65763543+hyugogirubato@users.noreply.github.com>"]