Skip to content

Commit

Permalink
Prepare the 0.10.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jparise committed Jun 6, 2023
1 parent f2d24a3 commit b8478cc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.10.0 - 2023-06-06
### Added
- Added `max_rows` to `encode_text()` for controlling the maximum number of rows
that will be returned (defaulting to 6). It can be set to a lower value to
produce a partial board or 0 to support unlimited rows.

### Changed
- `encode_text()` no longer raises `ValueError` when the result exceeds the
maximum number of rows. Instead, the result is truncated to `max_rows`.

## 0.9.0 - 2022-12-11
### Added
- Added `Color.BLANK` and `Color.FILLED` color values.
Expand Down
2 changes: 1 addition & 1 deletion vesta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"ReadWriteClient",
)

__version__ = "0.9.0"
__version__ = "0.10.0"

0 comments on commit b8478cc

Please sign in to comment.