Skip to content

Commit

Permalink
Merge branch 'main' into multihop
Browse files Browse the repository at this point in the history
  • Loading branch information
ljoss17 committed May 1, 2024
2 parents 3739875 + e82245d commit 2eb7989
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .changelog/v0.43.0/breaking-changes/207-update-tonic.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Update `tonic` to v0.11
([\#207](https://github.com/cosmos/ibc-proto-rs/pull/207))
1 change: 1 addition & 0 deletions .changelog/v0.43.0/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This release updates `tendermint-proto` to v0.35.0 and `tonic` to v0.11.0.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Update `tendermint-proto` to v0.36.0
([\#208](https://github.com/cosmos/ibc-proto-rs/issues/208))
1 change: 1 addition & 0 deletions .changelog/v0.44.0/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This release updates `tendermint-proto` to v0.36.0
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
command: fmt
args: --all -- --check

clippy_all_features:
clippy-all-features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -59,7 +59,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all-targets

clippy_no_default_features:
clippy-no-default-features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -74,7 +74,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
args: --no-default-features

check_features_powerset:
check-each-feature:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -85,7 +85,7 @@ jobs:
override: true
- uses: taiki-e/install-action@cargo-hack
- uses: Swatinem/rust-cache@v1
- run: cargo hack check --feature-powerset --no-dev-deps
- run: cargo hack check --each-feature --no-dev-deps

test-stable:
runs-on: ubuntu-latest
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# CHANGELOG

## v0.44.0

*April 25th, 2024*

This release updates `tendermint-proto` to v0.36.0.

### BREAKING CHANGES

- Update `tendermint-proto` to v0.36.0 ([\#208](https://github.com/cosmos/ibc-proto-rs/issues/208))

## v0.43.0

*April 22nd, 2024*

This release updates `tendermint-proto` to v0.35.0 and `tonic` to v0.11.0.

### BREAKING CHANGES

- Update `tendermint-proto` to v0.35.0 ([\#200](https://github.com/cosmos/ibc-proto-rs/pull/200))
- Update `tonic` to v0.11 ([\#207](https://github.com/cosmos/ibc-proto-rs/pull/207))

## v0.42.2

*March 14th, 2024*
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-proto"
version = "0.42.2"
version = "0.44.0"
authors = ["Informal Systems <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down Expand Up @@ -30,11 +30,11 @@ all-features = true
[dependencies]
prost = { version = "0.12.3", default-features = false, features = ["prost-derive"] }
bytes = { version = "1.2", default-features = false }
tonic = { version = "0.10", default-features = false, optional = true }
tonic = { version = "0.11", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, optional = true }
schemars = { version = "0.8", optional = true }
subtle-encoding = { version = "0.5", default-features = false }
base64 = { version = "0.21", default-features = false, features = ["alloc"] }
base64 = { version = "0.22", default-features = false, features = ["alloc"] }
flex-error = { version = "0.4", default-features = false }
ics23 = { version = "0.11.0", default-features = false }
informalsystems-pbjson = { version = "0.7.0", optional = true, default-features = false }
Expand All @@ -48,7 +48,7 @@ scale-info = { version = "2.1.2", default-features = false, features = [
borsh = { version = "0.10", default-features = false, optional = true }

[dependencies.tendermint-proto]
version = "0.35"
version = "0.36"
default-features = false

[dev-dependencies]
Expand Down
Binary file modified src/prost/proto_descriptor.bin
Binary file not shown.

0 comments on commit 2eb7989

Please sign in to comment.