Skip to content

Commit

Permalink
chore: release chores for v0.2.5 (#97)
Browse files Browse the repository at this point in the history
* chore: release chores for v0.2.5

* docs: fixed CHANGELOG
  • Loading branch information
srdtrk authored Jun 22, 2024
1 parent 1d8e028 commit 8cb7aa1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
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/[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).
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"

0 comments on commit 8cb7aa1

Please sign in to comment.