Skip to content

Commit 4aaaa9d

Browse files
authored
Update CHANGELOG for 7.1.0 (#1472)
1 parent 4a4c1d5 commit 4aaaa9d

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,26 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
<!-- markdownlint-disable MD024 -->
99
<!-- markdownlint-disable MD004 -->
1010

11+
## [7.1.0] (2021-02-15)
12+
13+
### Added
14+
15+
- support for named imports from ECMAScript modules ([#1440])
16+
- add `.cjs` to list of expected script file extensions ([#1449])
17+
- allow using option choices and variadic together ([#1454])
18+
19+
### Fixed
20+
21+
- replace use of deprecated `process.mainModule` ([#1448])
22+
- regression for legacy `command('*')` and call when command line includes options ([#1464])
23+
- regression for `on('command:*', ...)` and call when command line includes unknown options ([#1464])
24+
- display best error for combination of unknown command and unknown option (i.e. unknown command) ([#1464])
25+
26+
### Changed
27+
28+
- make TypeScript typings tests stricter ([#1453])
29+
- improvements to README and tests
30+
1131
## [7.0.0] (2021-01-15)
1232

1333
### Added
@@ -376,8 +396,17 @@ to expand `-fb` to `-f -b` rather than `-f b`.
376396
[#1403]: https://github.com/tj/commander.js/pull/1403
377397
[#1409]: https://github.com/tj/commander.js/pull/1409
378398
[#1427]: https://github.com/tj/commander.js/pull/1427
399+
[#1440]: https://github.com/tj/commander.js/pull/1440
400+
[#1448]: https://github.com/tj/commander.js/pull/1448
401+
[#1449]: https://github.com/tj/commander.js/pull/1449
402+
[#1453]: https://github.com/tj/commander.js/pull/1453
403+
[#1454]: https://github.com/tj/commander.js/pull/1454
404+
[#1464]: https://github.com/tj/commander.js/pull/1464
405+
406+
379407

380408
[Unreleased]: https://github.com/tj/commander.js/compare/master...develop
409+
[7.1.0]: https://github.com/tj/commander.js/compare/v7.0.0...v7.1.0
381410
[7.0.0]: https://github.com/tj/commander.js/compare/v6.2.1...v7.0.0
382411
[7.0.0-2]: https://github.com/tj/commander.js/compare/v7.0.0-1...v7.0.0-2
383412
[7.0.0-1]: https://github.com/tj/commander.js/compare/v7.0.0-0...v7.0.0-1

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": "7.0.0",
3+
"version": "7.1.0",
44
"description": "the complete solution for node.js command-line programs",
55
"keywords": [
66
"commander",

0 commit comments

Comments
 (0)