Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aitorres committed Oct 7, 2023
1 parent c0b3031 commit b7cdcd9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gutenberg2kindle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
to a Kindle email address via SMTP
"""

__version__ = "0.6.0"
__version__ = "0.7.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <dev@aitorres.com>"]
license = "AGPL-3.0-only"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_gutenberg2kindle.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit b7cdcd9

Please sign in to comment.