Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
jhernandezb committed Jan 5, 2022
1 parent 6daf789 commit 9990e04
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ Ref: https://keepachangelog.com/en/1.0.0/

## [Unreleased]

## [v1.1.2](https://github.com/public-awesome/stargaze/releases/tag/v1.1.1) - 2022-01-05

- [#519](https://github.com/public-awesome/stargaze/pull/519) Fix missing GRPC Routes for claim and alloc modules

## [v1.1.1](https://github.com/public-awesome/stargaze/releases/tag/v1.1.1) - 2021-12-30

- [#511](https://github.com/public-awesome/stargaze/pull/511) Bump Cosmos SDK to `v0.44.5` and ibc-go to `v1.2.5`
Expand Down
6 changes: 5 additions & 1 deletion x/alloc/module.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package alloc

import (
"context"
"encoding/json"
"fmt"

Expand Down Expand Up @@ -78,7 +79,10 @@ func (AppModuleBasic) RegisterRESTRoutes(clientCtx client.Context, rtr *mux.Rout

// RegisterGRPCGatewayRoutes registers the gRPC Gateway routes for the module.
func (AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *runtime.ServeMux) {
// this line is used by starport scaffolding # 2
err := types.RegisterQueryHandlerClient(context.Background(), mux, types.NewQueryClient(clientCtx))
if err != nil {
panic(err)
}
}

// GetTxCmd returns the capability module's root tx command.
Expand Down
6 changes: 5 additions & 1 deletion x/claim/module.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package claim

import (
"context"
"encoding/json"
"fmt"

Expand Down Expand Up @@ -78,7 +79,10 @@ func (AppModuleBasic) RegisterRESTRoutes(clientCtx client.Context, rtr *mux.Rout

// RegisterGRPCGatewayRoutes registers the gRPC Gateway routes for the module.
func (AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *runtime.ServeMux) {
// this line is used by starport scaffolding # 2
err := types.RegisterQueryHandlerClient(context.Background(), mux, types.NewQueryClient(clientCtx))
if err != nil {
panic(err)
}
}

// GetTxCmd returns the capability module's root tx command.
Expand Down

0 comments on commit 9990e04

Please sign in to comment.