Skip to content

Commit 2a6a36a

Browse files
build(deps): update prost requirement from 0.12 to 0.13 (#450)
* build(deps): update prost requirement from 0.12 to 0.13 Updates the requirements on [prost](https://github.com/tokio-rs/prost) to permit the latest version. - [Release notes](https://github.com/tokio-rs/prost/releases) - [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md) - [Commits](tokio-rs/prost@v0.12.0...v0.13.1) --- updated-dependencies: - dependency-name: prost dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * docs: update changelog * chore(actix-protobuf): prepare release 0.11.0 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rob Ede <[email protected]>
1 parent 3ebdc61 commit 2a6a36a

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

actix-protobuf/CHANGES.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
## 0.11.0
6+
7+
- Updated `prost` dependency to `0.13`.
58
- Minimum supported Rust version (MSRV) is now 1.75.
69

710
## 0.10.0

actix-protobuf/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-protobuf"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = [
55
"kingxsp <[email protected]>",
66
"Yuki Okushi <[email protected]>",
@@ -21,11 +21,11 @@ all-features = true
2121
actix-web = { version = "4", default-features = false }
2222
derive_more = "0.99.7"
2323
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
24-
prost = { version = "0.12", default-features = false }
24+
prost = { version = "0.13", default-features = false }
2525

2626
[dev-dependencies]
2727
actix-web = { version = "4", default-features = false, features = ["macros"] }
28-
prost = { version = "0.12", default-features = false, features = ["prost-derive"] }
28+
prost = { version = "0.13", default-features = false, features = ["prost-derive"] }
2929

3030
[lints]
3131
workspace = true

actix-protobuf/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<!-- prettier-ignore-start -->
66

77
[![crates.io](https://img.shields.io/crates/v/actix-protobuf?label=latest)](https://crates.io/crates/actix-protobuf)
8-
[![Documentation](https://docs.rs/actix-protobuf/badge.svg?version=0.10.0)](https://docs.rs/actix-protobuf/0.10.0)
8+
[![Documentation](https://docs.rs/actix-protobuf/badge.svg?version=0.11.0)](https://docs.rs/actix-protobuf/0.11.0)
99
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-protobuf)
10-
[![Dependency Status](https://deps.rs/crate/actix-protobuf/0.10.0/status.svg)](https://deps.rs/crate/actix-protobuf/0.10.0)
10+
[![Dependency Status](https://deps.rs/crate/actix-protobuf/0.11.0/status.svg)](https://deps.rs/crate/actix-protobuf/0.11.0)
1111

1212
<!-- prettier-ignore-end -->
1313

0 commit comments

Comments
 (0)