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

Release v0.43.0 #207

Merged
merged 6 commits into from
Apr 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
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.
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# CHANGELOG

## 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
6 changes: 3 additions & 3 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.43.0"
authors = ["Informal Systems <hello@informal.systems>"]
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 Down
219 changes: 163 additions & 56 deletions src/prost/google.protobuf.rs

Large diffs are not rendered by default.

Loading
Loading