Skip to content

Commit 7ea989d

Browse files
committed
v0.2.0
1 parent 5051e66 commit 7ea989d

File tree

17 files changed

+49
-27
lines changed

17 files changed

+49
-27
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "prost"
33
# NB: When modifying, also modify html_root_url in lib.rs
4-
version = "0.1.1"
4+
version = "0.2.0"
55
authors = ["Dan Burkert <dan@danburkert.com>"]
66
license = "Apache-2.0"
77
repository = "https://github.com/danburkert/prost"
@@ -38,5 +38,5 @@ bytes = "0.4"
3838
[dev-dependencies]
3939
env_logger = "0.4"
4040
log = "0.3"
41-
prost-derive = { path = "prost-derive" }
41+
prost-derive = { version = "0.2", path = "prost-derive" }
4242
quickcheck = "0.4"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,6 @@ generated code examples above.
287287

288288
`prost` is distributed under the terms of the Apache License (Version 2.0).
289289

290-
See [LICENSE](LICENSE), for details.
290+
See [LICENSE](LICENSE) for details.
291291

292292
Copyright 2017 Dan Burkert

benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "benchmarks"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
authors = ["Dan Burkert <dan@danburkert.com>"]
55
publish = false
66

conformance/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "conformance"
3-
version = "0.1.1"
3+
version = "0.0.0"
44
authors = ["Dan Burkert <dan@danburkert.com>"]
55
publish = false
66

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fuzz"
3-
version = "0.1.1"
3+
version = "0.0.0"
44
authors = ["Dan Burkert <dan@danburkert.com>"]
55
publish = false
66

prost-build/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "prost-build"
33
# NB: When modifying, also modify html_root_url in lib.rs
4-
version = "0.1.1"
4+
version = "0.2.0"
55
authors = ["Dan Burkert <dan@danburkert.com>"]
66
license = "Apache-2.0"
77
repository = "https://github.com/danburkert/prost"
@@ -17,8 +17,8 @@ itertools = "0.6"
1717
log = "0.3"
1818
multimap = { version = "0.4", default-features = false }
1919
petgraph = "0.4"
20-
prost = { path = ".." }
21-
prost-types = { path = "../prost-types" }
20+
prost = { version = "0.2", path = ".." }
21+
prost-types = { version = "0.2", path = "../prost-types" }
2222
tempdir = "0.3"
2323

2424
[build-dependencies]

prost-build/README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@
44
# `prost-build`
55

66
`prost-build` makes it easy to generate Rust code from `.proto` files as part of
7-
a Cargo build.
7+
a Cargo build. See the crate [documentation](https://docs.rs/prost-build/) for examples
8+
of how to integrate `prost-build` into a Cargo project.
89

9-
See the Crate [documentation](https://crates.io/crates/prost-build) for examples
10-
of how to integrate `prost` into a Cargo project.
10+
## License
11+
12+
`prost-build` is distributed under the terms of the Apache License (Version 2.0).
13+
14+
See [LICENSE](../LICENSE) for details.
15+
16+
Copyright 2017 Dan Burkert

prost-build/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/prost-build/0.1.1")]
1+
#![doc(html_root_url = "https://docs.rs/prost-build/0.2.0")]
22

33
//! `prost-build` compiles `.proto` files into Rust.
44
//!
@@ -68,7 +68,7 @@
6868
//!
6969
//! // Include the `items` module, which is generated from items.proto.
7070
//! pub mod items {
71-
//! include!(concat!(env!("OUT_DIR"), "/items.rs"));
71+
//! include!(concat!(env!("OUT_DIR"), "/snazzy.items.rs"));
7272
//! }
7373
//!
7474
//! pub fn create_large_shirt(color: String) -> items::Shirt {

prost-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "prost-derive"
33
# NB: When modifying, also modify html_root_url in lib.rs
4-
version = "0.1.1"
4+
version = "0.2.0"
55
authors = ["Dan Burkert <dan@danburkert.com>"]
66
license = "Apache-2.0"
77
repository = "https://github.com/danburkert/prost"

prost-derive/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,11 @@
66
`prost-derive` handles generating encoding and decoding implementations for Rust
77
types annotated with `prost` annotation. For the most part, users of `prost`
88
shouldn't need to interact with `prost-derive` directly.
9+
10+
## License
11+
12+
`prost-derive` is distributed under the terms of the Apache License (Version 2.0).
13+
14+
See [LICENSE](../LICENSE) for details.
15+
16+
Copyright 2017 Dan Burkert

prost-derive/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/prost-derive/0.1.1")]
1+
#![doc(html_root_url = "https://docs.rs/prost-derive/0.2.0")]
22
// The `quote!` macro requires deep recursion.
33
#![recursion_limit = "4096"]
44

prost-types/Cargo.toml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "prost-types"
33
# NB: When modifying, also modify html_root_url in lib.rs
4-
version = "0.1.1"
4+
version = "0.2.0"
55
authors = ["Dan Burkert <dan@danburkert.com>"]
66
license = "Apache-2.0"
77
repository = "https://github.com/danburkert/prost"
@@ -15,9 +15,5 @@ test = false
1515

1616
[dependencies]
1717
bytes = "0.4"
18-
prost = { path = ".." }
19-
prost-derive = { path = "../prost-derive" }
20-
21-
[dev-dependencies]
22-
prost-build = { path = "../prost-build" }
23-
tempdir = "0.3"
18+
prost = { version = "0.2", path = ".." }
19+
prost-derive = { version = "0.2", path = "../prost-derive" }

prost-types/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,15 @@ Prost definitions of Protocol Buffers well known types. See the [Protobuf refere
77
information about well known types.
88

99
[1]: https://developers.google.com/protocol-buffers/docs/reference/google.protobuf
10+
11+
## License
12+
13+
`prost-types` is distributed under the terms of the Apache License (Version 2.0).
14+
`prost-types` includes code imported from the Protocol Buffers projet, which is
15+
included under its original ([BSD][2]) license.
16+
17+
[2]: https://github.com/google/protobuf/blob/master/LICENSE
18+
19+
See [LICENSE](..LICENSE) for details.
20+
21+
Copyright 2017 Dan Burkert

prost-types/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/prost-codegen/0.1.1")]
1+
#![doc(html_root_url = "https://docs.rs/prost-codegen/0.2.0")]
22

33
//! Protocol Buffers well-known types.
44
//!

protobuf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "protobuf"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
authors = ["Dan Burkert <dan@danburkert.com>"]
55
publish = false
66

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/prost/0.1.1")]
1+
#![doc(html_root_url = "https://docs.rs/prost/0.2.0")]
22

33
extern crate bytes;
44

tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tests"
3-
version = "0.1.1"
3+
version = "0.0.0"
44
authors = ["Dan Burkert <dan@danburkert.com>"]
55
publish = false
66

0 commit comments

Comments
 (0)