diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-02-07 23:12:49 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-02-07 23:12:49 -0500 |
commit | dd2bad3ea58e9868a9e8b5d91b87f80e22f0680e (patch) | |
tree | a550361d32963a15195b5e5fe61fd792b9e79c67 | |
parent | 5def049472e1c261ad78ff56c5d5b3c6332e9bab (diff) | |
download | cmd2-git-dd2bad3ea58e9868a9e8b5d91b87f80e22f0680e.tar.gz |
Updated release data for 1.0.0-rc1 in preparation for a release candidate
Also:
- Updated some very outdated comments in transcript files
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rwxr-xr-x | README.md | 3 | ||||
-rw-r--r-- | examples/transcripts/exampleSession.txt | 2 | ||||
-rw-r--r-- | examples/transcripts/transcript_regex.txt | 2 |
4 files changed, 8 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 11d34ed7..83463ac3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 1.0.0-rc1 (TBD, 2020) +## 1.0.0-rc1 (February 7, 2020) * Enhancements * Changed the default help text to make `help -v` more discoverable * **set** command now supports tab-completion of values @@ -23,6 +23,9 @@ * Removed `cast()` utility function * Removed `ansi.FG_COLORS` and `ansi.BG_COLORS` dictionaries * Replaced with `ansi.fg` and `ansi.bg` enums providing similar but improved functionality +* Notes + * This is a release candidate prior to the 1.0.0 release + * We intend no more breaking changes prior to 1.0.0, just bug fixes and documentation updates ## 0.9.25 (January 26, 2020) * Enhancements @@ -314,10 +314,11 @@ example/transcript_regex.txt: ```text # Run this transcript with "python example.py -t transcript_regex.txt" +# Anything between two forward slashes, /, is interpreted as a regular expression (regex). # The regex for editor will match whatever program you use. # regexes on prompts just make the trailing space obvious (Cmd) set -allow_style: Terminal +allow_style: '/(Terminal|Always|Never)/' debug: False echo: False editor: /.*?/ diff --git a/examples/transcripts/exampleSession.txt b/examples/transcripts/exampleSession.txt index 8a60f487..85b985d3 100644 --- a/examples/transcripts/exampleSession.txt +++ b/examples/transcripts/exampleSession.txt @@ -1,5 +1,5 @@ # Run this transcript with "python decorator_example.py -t exampleSession.txt" -# The regex for colors is because no color on Windows. +# Anything between two forward slashes, /, is interpreted as a regular expression (regex). # The regex for editor will match whatever program you use. # regexes on prompts just make the trailing space obvious (Cmd) set diff --git a/examples/transcripts/transcript_regex.txt b/examples/transcripts/transcript_regex.txt index ce2a2beb..a3a91236 100644 --- a/examples/transcripts/transcript_regex.txt +++ b/examples/transcripts/transcript_regex.txt @@ -1,5 +1,5 @@ # Run this transcript with "python example.py -t transcript_regex.txt" -# The regex for colors is because no color on Windows. +# Anything between two forward slashes, /, is interpreted as a regular expression (regex). # The regex for editor will match whatever program you use. # regexes on prompts just make the trailing space obvious (Cmd) set |