Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CosmWasm -> cosmwasm #251

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

### Fixes:

* Import CosmWasm like cosmwasm to avoid capital letter trouble.
* Compile with go1.15
* Running `starport add type...` multiple times no longer breaks the app
* Running `appcli tx app create-x` now checks for all required args. -#173.
Expand All @@ -21,6 +22,7 @@
* `type` command supports dashes in app names.



## `v0.0.10-rc.3`

### Features:
Expand Down
2 changes: 1 addition & 1 deletion starport/interface/cli/starport/cmd/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
)

const (
wasmImport = "github.com/CosmWasm/wasmd"
wasmImport = "github.com/cosmwasm/wasmd"
apppkg = "app"
)

Expand Down
4 changes: 2 additions & 2 deletions starport/templates/add/new.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func appModify(opts *Options) genny.RunFn {
}
template := `%[1]v
"path/filepath"
"github.com/CosmWasm/wasmd/x/wasm"
"github.com/cosmwasm/wasmd/x/wasm"
"github.com/tendermint/tendermint/libs/cli"
"github.com/spf13/viper"`
replacement := fmt.Sprintf(template, placeholder)
Expand Down Expand Up @@ -103,7 +103,7 @@ func cmdMainModify(opts *Options) genny.RunFn {
return err
}
template := `%[1]v
wasmrest "github.com/CosmWasm/wasmd/x/wasm/client/rest"`
wasmrest "github.com/cosmwasm/wasmd/x/wasm/client/rest"`
replacement := fmt.Sprintf(template, placeholder)
content := strings.Replace(f.String(), placeholder, replacement, 1)

Expand Down