From 0bb1731283a2e320752edfd780557676231016a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Ignacio=20Torres?= Date: Mon, 3 Jul 2023 18:36:51 -0700 Subject: [PATCH] v0.5.0 --- CHANGELOG.md | 16 ++++++++++++++++ gutenberg2kindle/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_gutenberg2kindle.py | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b917bbc..150367b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.5.0] - 2023-07-03 + +### Added + +- New command (`version`) to get the currently installed version of the tool + +### Fixed + +- Fix a flaky test on the config module + +### Changed + +- Dependency updates +- Small tweaks on CLI help texts +- Github Actions workflow now ensures there's at least 80% of test coverage + ## [0.4.0] - 2022-05-23 ### Changed diff --git a/gutenberg2kindle/__init__.py b/gutenberg2kindle/__init__.py index a02073d..6252c59 100644 --- a/gutenberg2kindle/__init__.py +++ b/gutenberg2kindle/__init__.py @@ -3,4 +3,4 @@ to a Kindle email address via SMTP """ -__version__ = '0.4.0' +__version__ = '0.5.0' diff --git a/pyproject.toml b/pyproject.toml index c66ad4a..4ef8028 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gutenberg2kindle" -version = "0.4.0" +version = "0.5.0" description = "A small Python tool to download and send ebooks from Project Gutenberg to a Kindle email address via SMTP" authors = ["Andrés Ignacio Torres "] license = "AGPL-3.0-only" diff --git a/tests/test_gutenberg2kindle.py b/tests/test_gutenberg2kindle.py index 7a7ed41..eec982a 100644 --- a/tests/test_gutenberg2kindle.py +++ b/tests/test_gutenberg2kindle.py @@ -6,4 +6,4 @@ def test_version(): """Ensure that Python's version variable has the expected value""" - assert __version__ == '0.4.0' + assert __version__ == '0.5.0'