Update version to 0.3.0
This commit is contained in:
parent
dcd28189b2
commit
311040f46c
3 changed files with 5 additions and 4 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -92,7 +92,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "framed"
|
name = "framed"
|
||||||
version = "0.2.0"
|
version = "0.3.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"cobs 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
"cobs 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -110,7 +110,7 @@ dependencies = [
|
||||||
"clap 2.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"clap 2.29.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"csv 1.0.0-beta.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"csv 1.0.0-beta.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"derive-error 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"derive-error 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"framed 0.2.0",
|
"framed 0.3.0",
|
||||||
"serde_json 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_json 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -118,7 +118,7 @@ dependencies = [
|
||||||
name = "framed_test_type"
|
name = "framed_test_type"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"framed 0.2.0",
|
"framed 0.3.0",
|
||||||
"serde 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"serde_derive 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_derive 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
[travis]: https://travis-ci.org/fluffysquirrels/framed-rs
|
[travis]: https://travis-ci.org/fluffysquirrels/framed-rs
|
||||||
1. Increment version number in Cargo.toml (major version if breaking changes).
|
1. Increment version number in Cargo.toml (major version if breaking changes).
|
||||||
|
1. `cargo update` to update framed version in Cargo.lock.
|
||||||
1. Commit to update the version number.
|
1. Commit to update the version number.
|
||||||
1. Add a git tag for the new version number. Push it to [GitHub][github].
|
1. Add a git tag for the new version number. Push it to [GitHub][github].
|
||||||
1. Publish with `bin/publish_lib`.
|
1. Publish with `bin/publish_lib`.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "framed"
|
name = "framed"
|
||||||
version = "0.2.0"
|
version = "0.3.0"
|
||||||
description = "Send and receive data over lossy streams of bytes."
|
description = "Send and receive data over lossy streams of bytes."
|
||||||
authors = ["Alex Helfet <alex.helfet@gmail.com>"]
|
authors = ["Alex Helfet <alex.helfet@gmail.com>"]
|
||||||
categories = ["no-std", "embedded", "encoding", "network-programming"]
|
categories = ["no-std", "embedded", "encoding", "network-programming"]
|
||||||
|
|
Loading…
Reference in a new issue