8000 Prepare for release (#1255) · tj/commander.js@6405325 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6405325

Browse files
authored
Prepare for release (#1255)
1 parent 8c9cfbb commit 6405325

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
<!-- markdownlint-disable MD024 -->
99

10+
## [5.1.0] (2020-04-25)
11+
12+
### Added
13+
14+
- support for multiple command aliases, the first of which is shown in the auto-generated help ([#531], [#1236])
15+
- configuration support in `addCommand()` for `hidden` and `isDefault` ([#1232])
16+
17+
### Fixed
18+
19+
- omit masked help flags from the displayed help ([#645], [#1247])
20+
- remove old short help flag when change help flags using `helpOption` ([#1248])
21+
22+
### Changed
23+
24+
- remove use of `arguments` to improve auto-generated help in editors ([#1235])
25+
- rename `.command()` configuration `noHelp` to `hidden` (but not remove old support) ([#1232])
26+
- improvements to documentation
27+
- update dependencies
28+
- update tested versions of node
29+
- eliminate lint errors in TypeScript ([#1208])
30+
1031
## [5.0.0] (2020-03-14)
1132

1233
### Added
@@ -274,8 +295,10 @@ program
274295
[#432]: https://github.com/tj/commander.js/issues/432
275296
[#508]: https://github.com/tj/commander.js/issues/508
276297
[#512]: https://github.com/tj/commander.js/issues/512
298+
[#531]: https://github.com/tj/commander.js/issues/531
277299
[#599]: https://github.com/tj/commander.js/issues/599
278300
[#611]: https://github.com/tj/commander.js/issues/611
301+
[#645]: https://github.com/tj/commander.js/issues/645
279302
[#697]: https://github.com/tj/commander.js/issues/697
280303
[#742]: https://github.com/tj/commander.js/issues/742
281304
[#764]: https://github.com/tj/commander.js/issues/764
@@ -335,8 +358,15 @@ program
335358
[#1184]: https://github.com/tj/commander.js/pull/1184
336359
[#1191]: https://github.com/tj/commander.js/pull/1191
337360
[#1195]: https://github.com/tj/commander.js/pull/1195
361+
[#1208]: https://github.com/tj/commander.js/pull/1208
362+
[#1232]: https://github.com/tj/commander.js/pull/1232
363+
[#1235]: https://github.com/tj/commander.js/pull/1235
364+
[#1236]: https://github.com/tj/commander.js/pull/1236
365+
[#1247]: https://github.com/tj/commander.js/pull/1247
366+
[#1248]: https://github.com/tj/commander.js/pull/1248
338367

339368
[Unreleased]: https://github.com/tj/commander.js/compare/master...develop
369+
[5.1.0]: https://github.com/tj/commander.js/compare/v5.0.0..v5.1.0
340370
[5.0.0]: https://github.com/tj/commander.js/compare/v4.1.1..v5.0.0
341371
[5.0.0-4]: https://github.com/tj/commander.js/compare/v5.0.0-3..v5.0.0-4
342372
[5.0.0-3]: https://github.com/tj/commander.js/compare/v5.0.0-2..v5.0.0-3

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "commander",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"description": "the complete solution for node.js command-line programs",
55
"keywords": [
66
"commander",

0 commit comments

Comments
 (0)
0