From 08e28b0a5f8219a092251c0c25647ed504c725e0 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Fri, 18 Oct 2024 13:18:00 -0400 Subject: [PATCH 1/2] docs: Add README for protobuf directory --- proto/README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/proto/README.md b/proto/README.md index e69de29bb..184b8d63d 100644 --- a/proto/README.md +++ b/proto/README.md @@ -0,0 +1,25 @@ +# Sonr Protobuf + +## Overview + +This directory contains the protobuf definitions for the Sonr blockchain. + +## Directory Structure + +### `did` + +The `did` directory contains the protobuf definitions for the DID module. + +### `macaroon` + +The `macaroon` directory contains the protobuf definitions for the Macaroon module. + +### `service` + +The `service` directory contains the protobuf definitions for the Service module. + +### `vault` + +The `vault` directory contains the protobuf definitions for the Vault module. + +### `buf.gen.gogo.yaml` From 39ce73284e7d368e2b83abf24bc8a4b3dadb7893 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Mon, 21 Oct 2024 12:32:04 -0400 Subject: [PATCH 2/2] chore: upgrade go version to 1.23 in version-bump workflow --- .github/workflows/scheduled-release.yml | 2 +- .github/workflows/version-bump.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scheduled-release.yml b/.github/workflows/scheduled-release.yml index c60173b3c..8d78c4385 100644 --- a/.github/workflows/scheduled-release.yml +++ b/.github/workflows/scheduled-release.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.23" check-latest: true - name: Login to Docker Hub diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index edb208605..b8bf8e5e4 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.22" + go-version: "1.23" check-latest: true - name: Run tests run: make test