summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-12-09 21:08:15 -0500
committerGitHub <noreply@github.com>2019-12-09 21:08:15 -0500
commitbc99c90b4b4a8fd667b0ad77c9442d1393611f5f (patch)
tree7e612c633b9e54e35220b3690b8a5c2cd69000c3 /CHANGELOG.md
parent0aac6cee56a92bb6358106329f4f0c20e85bb7bc (diff)
parenta4427a3a905d9e926e1ab9c57716235229247912 (diff)
downloadcmd2-git-0.9.22.tar.gz
Merge pull request #831 from python-cmd2/align_text0.9.22
Added text alignment functions
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1ac01813..79b50d49 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,12 @@
-## 0.9.22 (TBD, 2019)
+## 0.9.22 (December 9, 2019)
* Bug Fixes
* Fixed bug where a redefined `ansi.style_error` was not being used in all `cmd2` files
* Enhancements
* Enabled line buffering when redirecting output to a file
-
+ * Added `align_left()`, `align_center()`, and `align_right()` to utils.py. All 3 of these functions support
+ ANSI escape sequences and characters with display widths greater than 1. They wrap `align_text()` which
+ is also in utils.py.
+
## 0.9.21 (November 26, 2019)
* Bug Fixes
* Fixed bug where pipe processes were not being stopped by Ctrl-C