Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(release): add support for version plans #23051

Closed
wants to merge 19 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/generated/cli/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -388,3 +388,25 @@ Prints additional information about the commands (e.g., stack traces)
Type: `boolean`

Show version number

### plan

Create a plan to pick a new version and generate a changelog entry.

```shell
nx release plan
```

#### Options

##### help

Type: `boolean`

Show help

##### version

Type: `boolean`

Show version number
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"type": "string",
"default": "prompt",
"description": "Which approach to use to determine the semver specifier used to bump the version of the project.",
"enum": ["prompt", "conventional-commits"]
"enum": ["prompt", "conventional-commits", "version-plans"]
},
"preid": {
"type": "string",
Expand Down
22 changes: 22 additions & 0 deletions docs/generated/packages/nx/documents/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -388,3 +388,25 @@ Prints additional information about the commands (e.g., stack traces)
Type: `boolean`

Show version number

### plan

Create a plan to pick a new version and generate a changelog entry.

```shell
nx release plan
```

#### Options

##### help

Type: `boolean`

Show help

##### version

Type: `boolean`

Show version number
Loading