Skip to content

Commit

Permalink
Merge branch 'main' into feat/sdk-v0.50
Browse files Browse the repository at this point in the history
  • Loading branch information
jeronimoalbi committed Oct 19, 2023
2 parents 98bc8d6 + 76d04d7 commit 5403dcc
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

### Fixes

- [#3386](https://github.com/ignite/cli/issues/3386) Prevent scaffolding of default module called "ibc"
- [#3592](https://github.com/ignite/cli/pull/3592) Fix `pkg/protoanalysis` to support HTTP rule parameter arguments
- [#3598](https://github.com/ignite/cli/pull/3598) Fix consensus param keeper constructor key in `app.go`
- [#3610](https://github.com/ignite/cli/pull/3610) Fix overflow issue of cosmos faucet in `pkg/cosmosfaucet/transfer.go` and `pkg/cosmosfaucet/cosmosfaucet.go`
Expand Down
4 changes: 4 additions & 0 deletions ignite/services/scaffolder/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@ func generate(
Params: paramsFields,
IsIBC: false,
}
// Check if the module name is valid
if err := checkModuleName(opts.AppPath, opts.ModuleName); err != nil {
return err
}
g, err = modulecreate.NewGenerator(opts)
if err != nil {
return err
Expand Down
28 changes: 27 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@
# Ignite CLI
<div align="center">
<h1> Ignite </h1>
</div>

<div align="center">
<a href="https://github.com/ignite/cli/blob/main/LICENSE">
<img alt="License: Apache-2.0" src="https://img.shields.io/github/license/cosmos/cosmos-sdk.svg" />
</a>
<a href="https://pkg.go.dev/github.com/ignite/cli?tab=doc">
<img alt="GoDoc" src="https://pkg.go.dev/badge/github.com/ignite/cli.svg" />
</a>
<a href="https://goreportcard.com/report/github.com/ignite/cli">
<img alt="Go report card" src="https://goreportcard.com/badge/github.com/ignite/cli" />
</a>
<!--
<a href="https://codecov.io/gh/ignite/cli">
<img alt="Code Coverage" src="https://codecov.io/gh/ignite/cli/branch/main/graph/badge.svg" />
</a>
-->
</div>
<div align="center">
<a href="https://github.com/ignite/cli">
<img alt="Lines Of Code" src="https://tokei.rs/b1/github/ignite/cli" />
</a>
<img alt="Test Status" src="https://github.com/ignite/cli/workflows/Test/badge.svg" />
<img alt="Lint Status" src="https://github.com/ignite/cli/workflows/Lint/badge.svg" />
</div>

![Ignite CLI](./assets/ignite-cli.png)

Expand Down

0 comments on commit 5403dcc

Please sign in to comment.