Skip to content

Commit

Permalink
Prepare for 12.1.0 (#71)
Browse files Browse the repository at this point in the history
* Prepare for 12.1.0

* Add node 22 to testing matrix

* Update package-lock with Commander 12.1.0
  • Loading branch information
shadowspawn committed May 19, 2024
1 parent a89cb30 commit 9c51db1
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x]
node-version: [18.x, 20.x, 22.x]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ The version numbering does not follow semantic versioning but instead aligns wit
<!-- markdownlint-disable MD024 -->
<!-- markdownlint-disable MD004 -->

## [12.1.0] (2024-05-18)

### Changed

- use ESLint for linting ([#65])
- format source files with Prettier ([#66])

### Removed

- removed unimplemented Option.fullDescription from TypeScript definition ([#70])


## [12.0.1] (2023-03-02)

### Changed
Expand Down Expand Up @@ -157,6 +169,7 @@ The version numbering does not follow semantic versioning but instead aligns wit
- inferred types for `.action()`
- inferred types for `.opts()`

[12.1.0]: https://github.com/commander-js/extra-typings/compare/v12.0.1...v12.1.0
[12.0.1]: https://github.com/commander-js/extra-typings/compare/v12.0.0...v12.0.1
[12.0.0]: https://github.com/commander-js/extra-typings/compare/v11.0.0...v12.0.0
[12.0.0-1]: https://github.com/commander-js/extra-typings/compare/v12.0.0-0...v12.0.0-1
Expand Down Expand Up @@ -185,3 +198,7 @@ The version numbering does not follow semantic versioning but instead aligns wit
[#49]: https://github.com/commander-js/extra-typings/pull/49
[#50]: https://github.com/commander-js/extra-typings/pull/50
[#59]: https://github.com/commander-js/extra-typings/pull/59

[#65]: https://github.com/commander-js/extra-typings/pull/65
[#66]: https://github.com/commander-js/extra-typings/pull/66
[#70]: https://github.com/commander-js/extra-typings/pull/70
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@commander-js/extra-typings",
"version": "12.0.1",
"version": "12.1.0",
"description": "Infer strong typings for commander options and action handlers",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -43,12 +43,12 @@
},
"homepage": "https://github.com/commander-js/extra-typings#readme",
"peerDependencies": {
"commander": "~12.0.0"
"commander": "~12.1.0"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"@types/node": "^20.11.7",
"commander": "~12.0.0",
"commander": "~12.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
Expand Down

0 comments on commit 9c51db1

Please sign in to comment.