Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aitorres committed Jul 4, 2023
1 parent ffc3fac commit 0bb1731
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.4.0'
__version__ = '0.5.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.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 <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.4.0'
assert __version__ == '0.5.0'

0 comments on commit 0bb1731

Please # to comment.