diff --git a/actix-protobuf/CHANGES.md b/actix-protobuf/CHANGES.md index dc2ec68bf..56206f87a 100644 --- a/actix-protobuf/CHANGES.md +++ b/actix-protobuf/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## 0.5.1 (2019-02-17) + +* Move repository to actix-extras + ## 0.5.0 (2019-01-24) * Migrate to actix-web 2.0.0 and std::future diff --git a/actix-protobuf/Cargo.toml b/actix-protobuf/Cargo.toml index 66559a35f..67fe602b3 100644 --- a/actix-protobuf/Cargo.toml +++ b/actix-protobuf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-protobuf" -version = "0.5.0" +version = "0.5.1" edition = "2018" authors = ["kingxsp ", "Yuki Okushi "] description = "Protobuf support for actix-web framework." diff --git a/actix-protobuf/README.md b/actix-protobuf/README.md index f64480277..5b22ee337 100644 --- a/actix-protobuf/README.md +++ b/actix-protobuf/README.md @@ -2,7 +2,7 @@ [![crates.io](https://img.shields.io/crates/v/actix-protobuf)](https://crates.io/crates/actix-protobuf) [![Documentation](https://docs.rs/actix-protobuf/badge.svg)](https://docs.rs/actix-protobuf) -[![Dependency Status](https://deps.rs/crate/actix-protobuf/0.5.0/status.svg)](https://deps.rs/crate/actix-protobuf/0.5.0) +[![Dependency Status](https://deps.rs/crate/actix-protobuf/0.5.1/status.svg)](https://deps.rs/crate/actix-protobuf/0.5.1) ![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-protobuf) [![Join the chat at https://gitter.im/actix/actix](https://badges.gitter.im/actix/actix.svg)](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) @@ -36,7 +36,7 @@ See [here](https://github.com/actix/actix-protobuf/tree/master/examples/prost-ex This project is licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT)) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0)) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT)) at your option. diff --git a/actix-protobuf/examples/prost-example/Cargo.toml b/actix-protobuf/examples/prost-example/Cargo.toml index 353710bc4..2f9efbabe 100644 --- a/actix-protobuf/examples/prost-example/Cargo.toml +++ b/actix-protobuf/examples/prost-example/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "prost-example" -version = "0.5.0" +version = "0.5.1" edition = "2018" -authors = ["kingxsp , Yuki Okushi "] +authors = ["kingxsp ", "Yuki Okushi "] [dependencies] bytes = "0.5" diff --git a/actix-protobuf/examples/prost-example/client.py b/actix-protobuf/examples/prost-example/client.py index 939a71b5d..99a93e7d3 100755 --- a/actix-protobuf/examples/prost-example/client.py +++ b/actix-protobuf/examples/prost-example/client.py @@ -2,7 +2,7 @@ # just start server and run client.py # wget https://github.com/protocolbuffers/protobuf/releases/download/v3.11.2/protobuf-python-3.11.2.zip -# unzip protobuf-python-3.11.2.zip.1 +# unzip protobuf-python-3.11.2.zip # cd protobuf-3.11.2/python/ # python3 setup.py install