Skip to content

Commit f743bf4

Browse files
committed
Expand changelog for prerelease
1 parent e5bce2f commit f743bf4

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
1-
3.0.0
1+
3.0.0-0 Prerelease
22
=====
33

44
* Add option to specify executable file name (#999)
5-
* Rework docs to clarify action vs executable commands (#990)
5+
* e.g. `.command('clone', 'clone description', { executableFile: 'myClone' })`
6+
* Change docs for `.command` to contrast action handler vs git-style executable. TypeScript now uses overloaded function. (#938 #990)
67
* Change to use straight quotes around strings in error messages (like 'this' instead of `this') (#915)
78
* Add TypeScript "reference types" for node (#974)
89
* Add support for hyphen as an option argument in subcommands (#697)
9-
* Add support for a short option flag and its value to be concatenated (#599)
10+
* Add support for a short option flag and its value to be concatenated for action handler subcommands (#599)
1011
* e.g. `-p 80` can also be supplied as `-p80`
1112
* Add executable arguments to spawn in win32, for git-style executables (#611)
12-
* e.g. `--harmony`
13+
* e.g. `node --harmony myCommand.js clone`
1314
* Add parent command as prefix of subcommand in help (#980)
1415
* Add optional custom description to `.version` (#963)
16+
* e.g. `program.version('0.0.1', '-v, --vers', 'output the current version')`
1517
* Add `.helpOption(flags, description)` routine to customise help flags and description (#963)
18+
* e.g. `.helpOption('-e, --HELP', 'read more information')`
1619
* Fix behavior of --no-* options (#795)
1720
* can now define both `--foo` and `--no-foo`
1821
* custom event listeners: `--no-foo` on cli now emits `option:no-foo` (previously `option:foo`)
1922
* default value: defining `--no-foo` after defining `--foo` leaves the default value unchanged (previously set it to false)
2023
* allow boolean default value, such as from environment (#987)
2124
* Increment inspector port for spawned subcommands (#991)
22-
* Change docs for `.command` to contrast action handler vs git-style executable. TypeScript now uses overloaded function. (#938)
25+
* e.g. `node --inspect myCommand.js clone`
26+
2327

2428
2.20.0 / 2019-04-02
2529
==================

0 commit comments

Comments
 (0)