From 9243bd542afe0fbb301e42b2e91685d7687ebcd0 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Sun, 19 Dec 2021 17:20:02 -0800 Subject: [PATCH] Prepare the 0.7.0 release --- CHANGELOG.md | 14 ++++++++++++++ vesta/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9737fc7..e9b56bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.7.0 - 2021-12-19 +### Added +- `encode_text()` offers a `valign` argument for controling vertical alignment + within the board. +- `Client.post_message()` now raises ValueError if `message` is a list of + encoded characters with the wrong dimensions. + +### Changed +- `encode_text()` now always produces six rows of output (a full board). + +### Removed +- Dropped support for Python 3.6, which has officially reached the end of its + supported life. + ## 0.6.0 - 2021-12-05 ### Added - `encode_text()` for encoding lines of text diff --git a/vesta/__init__.py b/vesta/__init__.py index 732d4cd..07e78a2 100644 --- a/vesta/__init__.py +++ b/vesta/__init__.py @@ -14,4 +14,4 @@ 'Client', ) -__version__ = "0.6.0" +__version__ = "0.7.0"