Skip to content

Commit 4b3ae8b

Browse files
authored
fix release instructions (#1115)
1 parent 60baea4 commit 4b3ae8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/releasing.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $ cargo install cargo-release
1919
```
2020
$ git fetch && git status
2121
On branch main
22-
Your branch is up to date with 'upstream/main'.
22+
Your branch is up to date with 'origin/main'.
2323
2424
nothing to commit, working tree clean
2525
```
@@ -28,7 +28,7 @@ $ cargo install cargo-release
2828
2. Using `cargo-release` we can publish a new release like so:
2929
3030
```
31-
$ cargo release minor --push-remote upstream
31+
$ cargo release minor --push-remote origin
3232
```
3333
3434
After verifying, you can rerun with `--execute` if all looks good.
@@ -39,7 +39,7 @@ $ cargo install cargo-release
3939
* Bump the minor part of the version in `Cargo.toml` (e.g. `0.7.1-alpha.0`
4040
-> `0.8.0`. You can use `patch` instead of `minor`, as appropriate).
4141
* Create a new tag (e.g. `v0.8.0`) locally
42-
* Push the new tag to the specified remote (`upstream` in the above
42+
* Push the new tag to the specified remote (`origin` in the above
4343
example), which will trigger a publishing process to crates.io as part of
4444
the [corresponding GitHub Action](https://github.com/sqlparser-rs/sqlparser-rs/blob/main/.github/workflows/rust.yml).
4545

0 commit comments

Comments
 (0)