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

chore: release chores for v0.2.5 #97

Merged
merged 2 commits into from
Jun 22, 2024
Merged
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

## [Unreleased]

## v0.2.5 (2024-06-22)

- Removed `GetModuleAddress` helper function from the generated test suite [#88](https://github.com/srdtrk/go-codegen/issues/88)
- Fixed diagnostics upload in the generated test suite [#91](https://github.com/srdtrk/go-codegen/issues/91)
- Depracated `--contract-name` flag to `--package-name` and `-p` in `interchaintest add-contract` command [#81](https://github.com/srdtrk/go-codegen/issues/81)
- Fixed the generation of oneOf when a title is set [#92](https://github.com/srdtrk/go-codegen/pull/92)

## v0.2.4 (2024-06-07)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/wasmd@v0.50.0` for a specific version) and `go get google.golang.org/grpc@latest` (or `go get google.golang.org/grpc@v1.63.3` for a specific version).
Expand Down
2 changes: 1 addition & 1 deletion pkg/types/version.go
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"
Loading