diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e68a9f..b329ba1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.7.2 - 2021-12-30 +### Added +- `encode_text()`'s `valign` argument can be set to `None` to disable row + padding. + +### Changed +- `encode()`'s error handling has been improved. A `ValueError` will now + be raised for all unsupported character codes, including those within the + [0, 69] range such as 57, 58, and 61. + ## 0.7.1 - 2021-12-19 ### Fixed - `encode_text()` was adding a leading blank character to the row after a line diff --git a/vesta/__init__.py b/vesta/__init__.py index ed24a28..a8da713 100644 --- a/vesta/__init__.py +++ b/vesta/__init__.py @@ -14,4 +14,4 @@ "Client", ) -__version__ = "0.7.1" +__version__ = "0.7.2"