summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-31 16:35:42 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-31 16:35:42 -0500
commit918200c02d392c17862fff81bbf58820ed15c725 (patch)
treef726867fcce0cf4ca74b62c2f34e66a63b8b3e59
parent3f67a3eff33cf1d1fa2e86167955c2edba929457 (diff)
downloadcmd2-git-1.5.0.tar.gz
Updated CHANGELOG to prepare for next release1.5.0
Also: - Upated README to reflect this will be the last release to support Python 3.5
-rw-r--r--CHANGELOG.md6
-rwxr-xr-xREADME.md16
2 files changed, 13 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 582a4d7a..b0c04e4c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-## 1.4.1 (TBD, 2020)
+## 1.5.0 (January 31, 2021)
* Bug Fixes
* Fixed bug where setting `always_show_hint=True` did not show a hint when completing `Settables`
* Fixed bug in editor detection logic on Linux systems that do not have `which`
@@ -7,7 +7,9 @@
* Enhancements
* Added `silent_startup_script` option to `cmd2.Cmd.__init__()`. If `True`, then the startup script's
output will be suppressed. Anything written to stderr will still display.
- * cmd2 now uses pyreadline3 when running Python 3.8 or greater on Windows
+ * cmd2 now uses pyreadline3 when running Python 3.8 or greater on Windows
+* Notes
+ * This is the last release planned to support Python 3.5
## 1.4.0 (November 11, 2020)
* Bug Fixes
diff --git a/README.md b/README.md
index aff3174f..d43908f6 100755
--- a/README.md
+++ b/README.md
@@ -45,13 +45,15 @@ Main Features
- Alerts that seamlessly print while user enters text at prompt
- Colored and stylized output using `ansi.style()`
-Python 3.5 support ending soon
-------------------------------
-`cmd2` will end support for Python 3.5 on August 31, 2020. Python 3.5 was [released](https://docs.python.org/3/whatsnew/3.5.html)
-on Sept. 13, 2015 and its [end-of-life](https://devguide.python.org/#status-of-python-branches) is planned for September 2020.
-
-New versions of `cmd2` will stop supporting Python 3.5 in a few months. We are very much looking forward to being able to use
-[features added in Python 3.6](https://docs.python.org/3/whatsnew/3.6.html) such as [f-strings](https://realpython.com/python-f-strings/).
+Python 3.5 support ended
+------------------------
+The last release of `cmd2` to support Python 3.5 was the 1.5.0 release on January 31, 2021. Python 3.5 was
+[released](https://docs.python.org/3/whatsnew/3.5.html) on Sept. 13, 2015 and it reached
+[end-of-life](https://devguide.python.org/#status-of-python-branches) on September 5, 2020.
+
+We are very much looking forward to being able to use
+[features added in Python 3.6](https://docs.python.org/3/whatsnew/3.6.html) such as
+[f-strings](https://realpython.com/python-f-strings/).
Installation
------------