diff --git a/docs/.gitignore b/docs/.gitignore index bdd277ecca..fc7eb7e9ba 100644 --- a/docs/.gitignore +++ b/docs/.gitignore @@ -13,6 +13,7 @@ docs/node_modules docs/docs/modules docs/docs/spec docs/docs/architecture +docs/docs/rfc docs/docs/tooling/01-cosmovisor.md docs/docs/tooling/02-depinject.md docs/docs/tooling/03-confix.md diff --git a/docs/docs/tooling/00-protobuf.md b/docs/docs/tooling/00-protobuf.md index 42e9d3bf03..53decb74d8 100644 --- a/docs/docs/tooling/00-protobuf.md +++ b/docs/docs/tooling/00-protobuf.md @@ -6,7 +6,7 @@ sidebar_position: 1 It is known that Cosmos SDK uses protocol buffers extensively, this docuemnt is meant to provide a guide on how it is used in the cosmos-sdk. -To generate the proto file, the Cosmos SDK uses a docker image, this image is provided to all to use as well. The latest version is `ghcr.io/cosmos/proto-builder:0.11.2` +To generate the proto file, the Cosmos SDK uses a docker image, this image is provided to all to use as well. The latest version is `ghcr.io/cosmos/proto-builder:0.12.x` Below is the example of the Cosmos SDK's commands for generating, linting, and formatting protobuf files that can be reused in any applications makefile. diff --git a/docs/post.sh b/docs/post.sh index 7bc2c2b2d2..fef3afc471 100755 --- a/docs/post.sh +++ b/docs/post.sh @@ -8,4 +8,5 @@ rm -rf docs/tooling/04-hubl.md rm -rf docs/run-node/04-rosetta.md rm -rf docs/architecture rm -rf docs/spec +rm -rf docs/rfc rm -rf versioned_docs versioned_sidebars versions.json \ No newline at end of file diff --git a/docs/pre.sh b/docs/pre.sh index 8e841e575e..921a678f1d 100755 --- a/docs/pre.sh +++ b/docs/pre.sh @@ -30,4 +30,7 @@ cp ../tools/rosetta/README.md ./docs/run-node/04-rosetta.md cp -r ./architecture ./docs ## Add spec documentation -cp -r ./spec ./docs \ No newline at end of file +cp -r ./spec ./docs + +## Add rfc documentation +cp -r ./rfc ./docs \ No newline at end of file