-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: release chores for v0.2.5 (#97)
* chore: release chores for v0.2.5 * docs: fixed CHANGELOG
- Loading branch information
Showing
3 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ Package name is also optional, if not specified, it will use the name of the con | |
### Generate gRPC query client | ||
|
||
```sh | ||
go-codegen generate query-client /path/to/contract-api.json --output /path/to/output.go --package-name mypackage | ||
go-codegen generate query-client /path/to/contract-api.json -o /path/to/output.go -p mypackage | ||
``` | ||
|
||
This will generate the Go code in the specified optional output directory, if not specified, it will generate the code in `query.go` in the current directory. Package name is also optional, if not specified, it will use the name of the contract. The generated code depends on the generated messages, the [wasmd package](https://pkg.go.dev/github.com/CosmWasm/wasmd), and the [grpc package](https://pkg.go.dev/google.golang.org/grpc). You can install them by running `go get github.com/CosmWasm/wasmd@latest` (or `go get github.com/CosmWasm/[email protected]` for a specific version) and `go get google.golang.org/grpc@latest` (or `go get google.golang.org/[email protected]` for a specific version). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package types | ||
|
||
// Version is the current version of the package | ||
const Version = "0.2.4" | ||
const Version = "0.2.5" |