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

Document change from self:update to self update #1588

Merged
merged 1 commit into from
Nov 17, 2019
Merged
Changes from all commits
Commits
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
16 changes: 8 additions & 8 deletions docs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,28 +117,28 @@ pipx uninstall poetry

## Updating `poetry`

Updating poetry to the latest stable version is as simple as calling the `self:update` command.
Updating Poetry to the latest stable version is as simple as calling the `self update` command.

```bash
poetry self:update
poetry self update
```

If you want to install prerelease versions, you can use the `--preview` option.
If you want to install pre-release versions, you can use the `--preview` option.

```bash
poetry self:update --preview
poetry self update --preview
```

And finally, if you want to install a specific version you can pass it as an argument
to `self:update`.
And finally, if you want to install a specific version, you can pass it as an argument
to `self update`.

```bash
poetry self:update 0.8.0
poetry self update 0.8.0
```

!!!note

The `self:update` command will only work if you used the recommended
The `self update` command will only work if you used the recommended
installer to install Poetry.


Expand Down