File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ extend-exclude = [
19
19
" testdata/**" ,
20
20
" tools/cmd/docfx/testdata/**" ,
21
21
# Generated libraries often contain typos coming from upstream protos.
22
+ " /go.work.sum" ,
22
23
" dart/generated/**" ,
23
24
" src/*/src/generated/**" ,
24
25
" src/generated/**" ,
Original file line number Diff line number Diff line change @@ -67,6 +67,20 @@ git commit -m"chore: update googleapis SHA circa $(date +%Y-%m-%d)" .
67
67
68
68
Then send a PR with whatever changed.
69
69
70
+ ## Bump all version numbers
71
+
72
+ Run:
73
+
74
+ ``` bash
75
+ git checkout -b chore-bump-version-numbers-circa-$( date +%Y-%m-%d)
76
+ go run github.com/googleapis/librarian/cmd/sidekick@main rust-bump-versions
77
+ # The previous command fails when `gax-internal` has changed.
78
+ git ls-files -z -- \
79
+ ' *.toml' ' :!:**/testdata/**' ' :!:**/generated/**' | \
80
+ xargs -0 taplo fmt
81
+ git commit -m" chore: bump version numbers circa $( date +%Y-%m-%d) " .
82
+ ```
83
+
70
84
## Refreshing the code
71
85
72
86
### All libraries
You can’t perform that action at this time.
0 commit comments