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

docs: improve UPGRADING.md instructions for v0.46.0 #12646

Merged
merged 9 commits into from
Aug 23, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
add version pinning
  • Loading branch information
julienrbrt committed Aug 23, 2022
commit e1479b32f9ef22df26806fa68ce374706480e2a4
2 changes: 1 addition & 1 deletion UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,4 @@ The `third_party/proto` folder that existed in [previous version](https://github

Instead, the SDK uses [`buf`](https://buf.build). Clients should have their own `buf.yaml` with `buf.build/cosmos/cosmos-sdk` as dependency, in order to avoid having to copy paste these files.

The protos can as well be downloaded using `buf export buf.build/cosmos/cosmos-sdk --output <some_folder>`.
The protos can as well be downloaded using `buf export buf.build/cosmos/cosmos-sdk:$(git log -1 --pretty=format:"%H" v0.46.0) --output <some_folder>`.
alexanderbez marked this conversation as resolved.
Show resolved Hide resolved
7 changes: 7 additions & 0 deletions third_party/proto/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Buf

To generate the protos that were present in this folder run:

```bash
buf export buf.build/cosmos/cosmos-sdk:$(git log -1 --pretty=format:"%H" <sdk_version_tag>) --output .`
julienrbrt marked this conversation as resolved.
Show resolved Hide resolved
```