Skip to content

Commit bd4ae26

Browse files
authored
Prepare for 14.0.1 release (#2426)
Prepare for 14.0.1: CHANGELOG and version
1 parent cb7ae51 commit bd4ae26

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

CHANGELOG.md

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

11+
## [14.0.1] (2025-09-12)
12+
13+
### Fixed
14+
15+
- broken markdown link in README ([#2369])
16+
17+
### Changed
18+
19+
- improve code readability by using optional chaining ([#2394])
20+
- use more idiomatic code with object spread instead of `Object.assign()` ([#2395])
21+
- improve code readability using `string.endsWith()` instead of `string.slice()` ([#2396])
22+
- refactor `.parseOptions()` to process args array in-place ([#2409])
23+
- change private variadic support routines from `._concatValue()` to `._collectValue()` (change code from `array.concat()` to `array.push()`) ([#2410])
24+
- update (dev) dependencies
25+
1126
## [14.0.0] (2025-05-18)
1227

1328
### Added
@@ -1411,6 +1426,12 @@ program
14111426
[#2348]: https://github.com/tj/commander.js/pull/2348
14121427
[#2350]: https://github.com/tj/commander.js/pull/2350
14131428
[#2359]: https://github.com/tj/commander.js/pull/2359
1429+
[#2369]: https://github.com/tj/commander.js/pull/2369
1430+
[#2394]: https://github.com/tj/commander.js/pull/2394
1431+
[#2395]: https://github.com/tj/commander.js/pull/2395
1432+
[#2396]: https://github.com/tj/commander.js/pull/2396
1433+
[#2409]: https://github.com/tj/commander.js/pull/2409
1434+
[#2410]: https://github.com/tj/commander.js/pull/2410
14141435

14151436
<!-- Referenced in 5.x -->
14161437
[#1]: https://github.com/tj/commander.js/issues/1
@@ -1490,6 +1511,7 @@ program
14901511
[#1028]: https://github.com/tj/commander.js/pull/1028
14911512

14921513
[Unreleased]: https://github.com/tj/commander.js/compare/master...develop
1514+
[14.0.1]: https://github.com/tj/commander.js/compare/v14.0.0...v14.0.1
14931515
[14.0.0]: https://github.com/tj/commander.js/compare/v13.1.0...v14.0.0
14941516
[13.1.0]: https://github.com/tj/commander.js/compare/v13.0.0...v13.1.0
14951517
[13.0.0]: https://github.com/tj/commander.js/compare/v12.1.0...v13.0.0

package-lock.json

Lines changed: 2 additions & 2 deletions
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": "14.0.0",
3+
"version": "14.0.1",
44
"description": "the complete solution for node.js command-line programs",
55
"keywords": [
66
"commander",

0 commit comments

Comments
 (0)