Skip to content

Commit

Permalink
chore: changelog update and merging master (#581)
Browse files Browse the repository at this point in the history
* feat: add simulations for update credit class messages (#559)

* feat: add weighted operations for update credit class msgs

* chore: fix typo

* chore: address review changes

* feat(tests): add `x/ecocredit` gRPC REST tests (#544)

* feat: WIP add grpc rest tests

* wip

* WIP adding tests

* add query tests

* fix failing test

* Update x/ecocredit/client/testsuite/grpc.go

Co-authored-by: Ryan Christoffersen <12519942+ryanchristo@users.noreply.github.com>

* Update x/ecocredit/client/testsuite/grpc.go

Co-authored-by: Ryan Christoffersen <12519942+ryanchristo@users.noreply.github.com>

* Update x/ecocredit/client/testsuite/grpc.go

Co-authored-by: Ryan Christoffersen <12519942+ryanchristo@users.noreply.github.com>

* update query batches endpoint

* Update x/ecocredit/client/testsuite/grpc.go

* run make proto-swagger-gen

* chore: fix errors

* fix failing tests

Co-authored-by: Ryan Christoffersen <12519942+ryanchristo@users.noreply.github.com>
Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>

* feat: Script for starting a local Regen test node, based on the tutorial (#538)

* added script to create a test node based on the tutorial instructions

* Apply suggestions from code review

I'm going to make one more change after this commit.

Co-authored-by: Ryan Christoffersen <12519942+ryanchristo@users.noreply.github.com>

* run the uname command once and assign to variable

* using bash shell rather than sh

Co-authored-by: Ryan Christoffersen <12519942+ryanchristo@users.noreply.github.com>

* docs: ecocredit client spec (#557)

* docs: ecocredit client spec

* add update commands

* address review comment

* Update x/ecocredit/spec/05_client.md

Co-authored-by: Marie Gauthier <marie.gauthier63@gmail.com>

Co-authored-by: Marie Gauthier <marie.gauthier63@gmail.com>

* fix: ORM IndexKeyCodec (#475) (#525)

* WIP Max255DynamicLengthIndexKeyCodec

* Add PrefixSearchableKey and get all tests working

* WIP changes to IndexKeyCodec

* wip on key codec

* Fix some tests

* Fix remaining tests

* Rm uint64_index

* Clean up and add more tests

* Update x/group and x/ecocredit

* Verify index key type

* Address some review comments

* Fix docs

* Add docs about NewIndex

Co-authored-by: blushi <marie.gauthier63@gmail.com>
Co-authored-by: likhita-809 <78951027+likhita-809@users.noreply.github.com>

* docs: update regen test networks (#561)

* docs: update regen test networks

* docs: update regen test networks

* Update docs/getting-started/running-a-validator.md

Co-authored-by: likhita-809 <78951027+likhita-809@users.noreply.github.com>

* fix link

* minor revisions

* Update docs/getting-started/live-networks.md

Co-authored-by: Marie Gauthier <marie.gauthier63@gmail.com>

* fix link

Co-authored-by: likhita-809 <78951027+likhita-809@users.noreply.github.com>
Co-authored-by: Marie Gauthier <marie.gauthier63@gmail.com>

* chore: update cosmos sdk dependency (#580)

* chore: update cosmos sdk dependency

* update cosmos-sdk dependency in all nested modules

* v2.0.0-rc2 Changelog

* Apply suggestions from code review

Co-authored-by: Ryan Christoffersen <12519942+ryanchristo@users.noreply.github.com>

Co-authored-by: MD Aleem <72057206+aleem1314@users.noreply.github.com>
Co-authored-by: Ryan Christoffersen <12519942+ryanchristo@users.noreply.github.com>
Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
Co-authored-by: John Kemp <frumioj@users.noreply.github.com>
Co-authored-by: Marie Gauthier <marie.gauthier63@gmail.com>
Co-authored-by: Ru Horlick <ruperthorlick@gmail.com>
Co-authored-by: likhita-809 <78951027+likhita-809@users.noreply.github.com>
  • Loading branch information
8 people authored Oct 18, 2021
1 parent 45dfba4 commit e2e08f5
Show file tree
Hide file tree
Showing 63 changed files with 4,956 additions and 1,665 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v2.0.0-rc2](https://github.com/regen-network/regen-ledger/releases/tag/v2.0.0-rc2) - 2021-10-18

### General

* [#580](https://github.com/regen-network/regen-ledger/pull/580) Update SDK fork to v0.44.2-regen-1
* [#538](https://github.com/regen-network/regen-ledger/pull/538) Add script for starting a local test node

### Fixed

* (orm) [#525](https://github.com/regen-network/regen-ledger/pull/525) fix: ORM IndexKeyCodec

## [v2.0.0-rc1](https://github.com/regen-network/regen-ledger/releases/tag/v2.0.0-rc1) - 2021-09-30

### General
Expand Down
3 changes: 0 additions & 3 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -610,9 +610,6 @@ func (app *RegenApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIC
ModuleBasics.RegisterRESTRoutes(clientCtx, apiSvr.Router)
ModuleBasics.RegisterGRPCGatewayRoutes(clientCtx, apiSvr.GRPCGatewayRouter)

// Register `server.Manager` modules grpc-gateway routes with API server.
app.smm.RegisterGRPCGatewayRoutes(apiSvr)

// register swagger API from root so that other applications can override easily
if apiConfig.Swagger {
RegisterSwaggerAPI(clientCtx, apiSvr.Router)
Expand Down
3 changes: 2 additions & 1 deletion app/testsuite/modules_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package testsuite

import (
"testing"

ecocredit "github.com/regen-network/regen-ledger/x/ecocredit/client/testsuite"
"github.com/stretchr/testify/suite"
"testing"
)

func TestEcocreditIntegration(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion client/docs/statik/statik.go

Large diffs are not rendered by default.

Loading

0 comments on commit e2e08f5

Please sign in to comment.