diff --git a/CHANGELOG.md b/CHANGELOG.md index c9f5c7cd..43c7ad08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [9.0.0-next.23](https://github.com/readmeio/rdme/compare/v9.0.0-next.22...v9.0.0-next.23) (2024-11-19) + + +### Features + +* add `title` flag to `openapi:convert` ([#1071](https://github.com/readmeio/rdme/issues/1071)) ([1d71f3f](https://github.com/readmeio/rdme/commit/1d71f3ff3db022bf81a5c6ec9d9eceb42d093961)), closes [#1068](https://github.com/readmeio/rdme/issues/1068) + # [9.0.0-next.22](https://github.com/readmeio/rdme/compare/v9.0.0-next.21...v9.0.0-next.22) (2024-11-19) diff --git a/documentation/commands.md b/documentation/commands.md index 7b38951b..cf483d84 100644 --- a/documentation/commands.md +++ b/documentation/commands.md @@ -14,7 +14,7 @@ $ npm install -g rdme $ rdme COMMAND running command... $ rdme (--version) -rdme/9.0.0-next.21 linux-x64 node-v20.18.0 +rdme/9.0.0-next.22 linux-x64 node-v20.18.0 $ rdme --help [COMMAND] USAGE $ rdme COMMAND @@ -323,13 +323,14 @@ Convert an API definition to OpenAPI and bundle any external references. ``` USAGE - $ rdme openapi:convert [SPEC] [--out ] [--workingDirectory ] + $ rdme openapi:convert [SPEC] [--out ] [--title ] [--workingDirectory ] ARGUMENTS SPEC A file/URL to your API definition FLAGS --out= Output file path to write converted file to + --title= An override value for the `info.title` field in the API definition --workingDirectory= Working directory (for usage with relative external references) DESCRIPTION @@ -344,7 +345,7 @@ Analyze an OpenAPI/Swagger definition for various OpenAPI and ReadMe feature usa USAGE $ rdme openapi:inspect [SPEC] [--feature additionalProperties|callbacks|circularRefs|discriminators|links|style|polymorphism|serverVariables|webhooks|xml|rea - dme...] [--title ] [--workingDirectory ] + dme...] [--workingDirectory ] ARGUMENTS SPEC A file/URL to your API definition @@ -355,7 +356,6 @@ FLAGS will be returned alongside the report. - --title= An override value for the `info.title` field in the API definition --workingDirectory= Working directory (for usage with relative external references) DESCRIPTION diff --git a/package-lock.json b/package-lock.json index fef445a3..7eae9f5f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rdme", - "version": "9.0.0-next.22", + "version": "9.0.0-next.23", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rdme", - "version": "9.0.0-next.22", + "version": "9.0.0-next.23", "license": "MIT", "dependencies": { "@actions/core": "^1.6.0", diff --git a/package.json b/package.json index 879aac3e..ed8e45ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rdme", - "version": "9.0.0-next.22", + "version": "9.0.0-next.23", "description": "ReadMe's official CLI and GitHub Action.", "license": "MIT", "author": "ReadMe (https://readme.com)",