File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ $ cargo install cargo-release
19
19
```
20
20
$ git fetch && git status
21
21
On branch main
22
- Your branch is up to date with 'upstream /main'.
22
+ Your branch is up to date with 'origin /main'.
23
23
24
24
nothing to commit, working tree clean
25
25
```
@@ -28,7 +28,7 @@ $ cargo install cargo-release
28
28
2. Using `cargo-release` we can publish a new release like so:
29
29
30
30
```
31
- $ cargo release minor --push-remote upstream
31
+ $ cargo release minor --push-remote origin
32
32
```
33
33
34
34
After verifying, you can rerun with `--execute` if all looks good.
@@ -39,7 +39,7 @@ $ cargo install cargo-release
39
39
* Bump the minor part of the version in `Cargo.toml` (e.g. `0.7.1-alpha.0`
40
40
-> `0.8.0`. You can use `patch` instead of `minor`, as appropriate).
41
41
* 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
43
43
example), which will trigger a publishing process to crates.io as part of
44
44
the [corresponding GitHub Action](https://github.com/sqlparser-rs/sqlparser-rs/blob/main/.github/workflows/rust.yml).
45
45
You can’t perform that action at this time.
0 commit comments