Skip to content

Commit

Permalink
chore: release v0.20.3 (#2356)
Browse files Browse the repository at this point in the history
chore: release v0.20.3
  • Loading branch information
ilgooz authored Apr 14, 2022
2 parents 2448be8 + ae4a86c commit aa0df65
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [`v0.20.3`](https://github.com/ignite-hq/cli/releases/tag/v0.20.3)

### Fixes

- Use latest version of CLI in templates to fix Linux ARM support _(It's now possible to develop chains in Linux ARM machines and since the chain depends on the CLI in its go.mod, it needs to use the latest version that support ARM targets)_

## [`v0.20.2`](https://github.com/ignite-hq/cli/releases/tag/v0.20.2)

### Fixes

- Use `unsafe-reset-all` cmd under `tendermint` cmd for chains that use `=> v0.45.3` version of Cosmos SDK

## [`v0.20.1`](https://github.com/ignite-hq/cli/releases/tag/v0.20.1)

### Features
Expand Down
12 changes: 6 additions & 6 deletions docs/guide/blog/connect-blockchain.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
---
description: Blockchain Client in Go
description: Blockchain client in Go
order: 3
---

# Create a Blockchain Client in Go
# Create a blockchain client in Go

Learn how to connect your blockchain to an independent application with RPC.

After creating the blog blockchain in this tutorial you will learn how to connect to your blockchain from a separate client.

## Use the Blog Blockchain
## Use the blog blockchain

Navigate to a separate directory right next to the `blog` blockchain you built in the [Build a Blog](index.md) tutorial.

## Creating a Blockchain Client
## Creating a blockchain client

Create a new directory called `blogclient` on the same level as `blog` directory. As the name suggests, `blogclient` will contain a standalone Go program that acts as a client to your `blog` blockchain.

Expand Down Expand Up @@ -64,7 +64,7 @@ The `blogclient` will eventually have only two files:
- `main.go` for the main logic of the client
- `go.mod` for specifying dependencies.

### Main Logic of the Client in main.go
### Main logic of the client in `main.go`

Add the following code to your `main.go` file to make a connection to your blockchain from a separate app.

Expand Down Expand Up @@ -138,7 +138,7 @@ Read the comments in the code carefully to learn details about each line of code
To learn more about the `cosmosclient` package, see the Go
[cosmosclient](https://pkg.go.dev/github.com/ignite-hq/cli/ignite/pkg/cosmosclient) package documentation. Details are provided to learn how to use the `Client` type with `Options` and `KeyringBackend`.

## Running the Blockchain and the Client
## Run the blockchain and the client

Make sure your blog blockchain is still running with `ignite chain serve`.

Expand Down
2 changes: 1 addition & 1 deletion ignite/templates/app/stargate/go.mod.plush
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require (
github.com/spf13/cobra v1.3.0
github.com/stretchr/testify v1.7.0
github.com/tendermint/spn v0.1.1-0.20220407154406-5cfd1bf28150
github.com/ignite-hq/cli v0.20.0
github.com/ignite-hq/cli v0.20.3
github.com/tendermint/tendermint v0.34.16
github.com/tendermint/tm-db v0.6.6
google.golang.org/genproto v0.0.0-20220317150908-0efb43f6373e
Expand Down

0 comments on commit aa0df65

Please sign in to comment.