From b7cdcd9aebe7e021b3a20bc3ee6f9d11ee160e1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Ignacio=20Torres?= Date: Sat, 7 Oct 2023 11:42:22 -0700 Subject: [PATCH] v0.7.0 --- CHANGELOG.md | 10 ++++++++++ gutenberg2kindle/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_gutenberg2kindle.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 075410d..1432951 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ 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.7.0] - 2023-10-07 + +### Added + +- A new setting value can be used to set a maximum file size limit to send to your Kindle via email. + +### Changed + +- Dependency updates + ## [0.6.0] - 2023-07-19 ### Added diff --git a/gutenberg2kindle/__init__.py b/gutenberg2kindle/__init__.py index 6919178..dc48bc2 100644 --- a/gutenberg2kindle/__init__.py +++ b/gutenberg2kindle/__init__.py @@ -3,4 +3,4 @@ to a Kindle email address via SMTP """ -__version__ = "0.6.0" +__version__ = "0.7.0" diff --git a/pyproject.toml b/pyproject.toml index 1deb243..6f490ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gutenberg2kindle" -version = "0.6.0" +version = "0.7.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 9c03dbc..d83c372 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.6.0" + assert __version__ == "0.7.0"