Skip to content

Commit 8cb7aa1

Browse files
authored
chore: release chores for v0.2.5 (#97)
* chore: release chores for v0.2.5 * docs: fixed CHANGELOG
1 parent 1d8e028 commit 8cb7aa1

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22

33
## [Unreleased]
44

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

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Package name is also optional, if not specified, it will use the name of the con
4646
### Generate gRPC query client
4747

4848
```sh
49-
go-codegen generate query-client /path/to/contract-api.json --output /path/to/output.go --package-name mypackage
49+
go-codegen generate query-client /path/to/contract-api.json -o /path/to/output.go -p mypackage
5050
```
5151

5252
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).

pkg/types/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package types
22

33
// Version is the current version of the package
4-
const Version = "0.2.4"
4+
const Version = "0.2.5"

0 commit comments

Comments
 (0)