summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-09-25 00:10:13 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-09-25 00:10:13 -0400
commit67aa13c732b331e700c8bd16c77fabfe6c90c75c (patch)
treeb7bb35ca64b16ee79b8070ceb29dda7f0269d729 /CHANGELOG.md
parent3c51b9f32d35c05847c302646575dab576430a01 (diff)
downloadcmd2-git-67aa13c732b331e700c8bd16c77fabfe6c90c75c.tar.gz
Deleted the hook methods which were deprecated in the previous release
The following methods of cmd2.Cmd have been deleted: - preparse - postparsing_precmd - postparsing_postcmd The new application lifecycle hook framework allows for registering callbacks to be called at various points in the application lifecycle and is more powerful and flexible than the old system of fixed hook methods.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6bf3c961..c03a2323 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,11 @@
for formatting help/description text
* Aliases are now sorted alphabetically
* The **set** command now tab-completes settable parameter names
+* Deletions
+ * The ``preparse``, ``postparsing_precmd``, and ``postparsing_postcmd`` methods *deprecated* in the previous release
+ have been deleted
+ * The new application lifecycle hook system allows for registration of callbacks to be called at various points
+ in the lifecycle and is more powerful and flexible than the previous system
## 0.9.4 (August 21, 2018)
* Bug Fixes