Skip to content

Commit

Permalink
Merge branch 'main' into ty/1453-ICA_Controller
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanchristo committed Nov 2, 2022
2 parents 725bb1e + 01e2a6a commit 4757b0f
Show file tree
Hide file tree
Showing 76 changed files with 651 additions and 294 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -199,3 +199,5 @@ dist/

# Data - ideally these don't exist
.localnet

completions
30 changes: 26 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
project_name: regen-ledger

before:
hooks:
- ./scripts/completions.sh

env:
- GO111MODULE=on

Expand Down Expand Up @@ -126,7 +130,9 @@ archives:
wrap_in_directory: true
format: zip
files:
- none*
- README.md
- LICENSE
- completions/*

brews:
- name: regen-ledger
Expand All @@ -143,16 +149,32 @@ brews:
system "#{bin}/regen --version"
install: |
bin.install "regen"
bash_completion.install "completions/regen.bash" => "regen"
zsh_completion.install "completions/regen.zsh" => "_regen"
fish_completion.install "completions/regen.fish"
nfpms:
- maintainer: regen-network
description: "Blockchain-powered marketplace for climate solutions and planetary regenerations"
homepage: "https://www.regen.network/"
license: Apache2.0
formats:
- deb
- rpm
- apk
- deb
- rpm
- apk
contents:
- src: ./completions/regen.bash
dst: /usr/share/bash-completion/completions/regen
file_info:
mode: 0644
- src: ./completions/regen.fish
dst: /usr/share/fish/vendor_completions.d/regen.fish
file_info:
mode: 0644
- src: ./completions/regen.zsh
dst: /usr/share/zsh/vendor-completions/_regen
file_info:
mode: 0644

release:
github:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### General

- [#1579](https://github.com/regen-network/regen-ledger/pull/1579) Add `errors` module

#### Changed

- [#1244](https://github.com/regen-network/regen-ledger/pull/1244) Update all modules to Cosmos SDK v0.46
Expand Down Expand Up @@ -61,6 +63,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#1395](https://github.com/regen-network/regen-ledger/pull/1395) Add `Resolver` state validation checks
- [#1395](https://github.com/regen-network/regen-ledger/pull/1395) Add `DataResolver` state validation checks

#### Fixed

- [#1579](https://github.com/regen-network/regen-ledger/pull/1579) Return gRPC response code in query response.

### x/ecocredit

#### API Breaking Changes
Expand Down
21 changes: 10 additions & 11 deletions api/regen/ecocredit/basket/v1/tx.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

68 changes: 58 additions & 10 deletions api/regen/ecocredit/basket/v1/tx_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions errors/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module github.com/regen-network/regen-ledger/errors

go 1.18

require (
cosmossdk.io/errors v1.0.0-beta.7
google.golang.org/grpc v1.50.1
)

require (
github.com/golang/protobuf v1.5.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
google.golang.org/protobuf v1.27.1 // indirect
)
Loading

0 comments on commit 4757b0f

Please sign in to comment.