Skip to content

Commit d159b5e

Browse files
authored
Merge pull request #7 from JohnTitor/migrate-protobuf
Prepare for new release
2 parents e4ac892 + 920bb56 commit d159b5e

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

actix-protobuf/CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes
22

3+
## 0.5.1 (2019-02-17)
4+
5+
* Move repository to actix-extras
6+
37
## 0.5.0 (2019-01-24)
48

59
* Migrate to actix-web 2.0.0 and std::future

actix-protobuf/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-protobuf"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2018"
55
authors = ["kingxsp <[email protected]>", "Yuki Okushi <[email protected]>"]
66
description = "Protobuf support for actix-web framework."

actix-protobuf/README.md

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

33
[![crates.io](https://img.shields.io/crates/v/actix-protobuf)](https://crates.io/crates/actix-protobuf)
44
[![Documentation](https://docs.rs/actix-protobuf/badge.svg)](https://docs.rs/actix-protobuf)
5-
[![Dependency Status](https://deps.rs/crate/actix-protobuf/0.5.0/status.svg)](https://deps.rs/crate/actix-protobuf/0.5.0)
5+
[![Dependency Status](https://deps.rs/crate/actix-protobuf/0.5.1/status.svg)](https://deps.rs/crate/actix-protobuf/0.5.1)
66
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-protobuf)
77
[![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)
88

@@ -36,7 +36,7 @@ See [here](https://github.com/actix/actix-protobuf/tree/master/examples/prost-ex
3636

3737
This project is licensed under either of
3838

39-
* 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))
40-
* MIT license ([LICENSE-MIT](LICENSE-MIT) or [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT))
39+
* 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))
40+
* MIT license ([LICENSE-MIT](LICENSE-MIT) or [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT))
4141

4242
at your option.

actix-protobuf/examples/prost-example/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "prost-example"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2018"
5-
authors = ["kingxsp <[email protected]>, Yuki Okushi <[email protected]>"]
5+
authors = ["kingxsp <[email protected]>", "Yuki Okushi <[email protected]>"]
66

77
[dependencies]
88
bytes = "0.5"

actix-protobuf/examples/prost-example/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# just start server and run client.py
33

44
# wget https://github.com/protocolbuffers/protobuf/releases/download/v3.11.2/protobuf-python-3.11.2.zip
5-
# unzip protobuf-python-3.11.2.zip.1
5+
# unzip protobuf-python-3.11.2.zip
66
# cd protobuf-3.11.2/python/
77
# python3 setup.py install
88

0 commit comments

Comments
 (0)