diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-07 15:06:08 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-07 15:06:08 -0500 |
commit | 79044ee0c6f3523fad38f262caf016d7c4363f91 (patch) | |
tree | fdbb95e4997e09ad9685df24977f2ed95b423974 | |
parent | c4a2882235857e4912a59823fb595970079728f7 (diff) | |
download | cmd2-git-79044ee0c6f3523fad38f262caf016d7c4363f91.tar.gz |
Updated change log
-rw-r--r-- | CHANGELOG.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e2a94869..11d34ed7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ * `ansi.style()` `fg` argument can now either be of type `str` or `ansi.fg` * `ansi.style()` `bg` argument can now either be of type `str` or `ansi.bg` * This supports IDE auto-completion of color names + * The enums also support + * `f-strings` and `format()` calls (e.g. `"{}hello{}".format(fg.blue, fg.reset)`) + * string concatenation (e.g. `fg.blue + "hello" + fg.reset`) * Breaking changes * Renamed `locals_in_py` attribute of `cmd2.Cmd` to `self_in_py` * The following public attributes of `cmd2.Cmd` are no longer settable at runtime by default: |