From 311040f46ce271535f4980d86e17c2ef047916c8 Mon Sep 17 00:00:00 2001 From: Alex Helfet Date: Sat, 30 Dec 2017 18:17:20 +0000 Subject: [PATCH] Update version to 0.3.0 --- Cargo.lock | 6 +++--- doc/release.md | 1 + framed/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c069672..c9f8709 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -92,7 +92,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "framed" -version = "0.2.0" +version = "0.3.0" dependencies = [ "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)", @@ -110,7 +110,7 @@ dependencies = [ "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)", "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)", ] @@ -118,7 +118,7 @@ dependencies = [ name = "framed_test_type" version = "0.1.0" dependencies = [ - "framed 0.2.0", + "framed 0.3.0", "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)", ] diff --git a/doc/release.md b/doc/release.md index 97e0082..9e36dce 100644 --- a/doc/release.md +++ b/doc/release.md @@ -8,6 +8,7 @@ [travis]: https://travis-ci.org/fluffysquirrels/framed-rs 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. Add a git tag for the new version number. Push it to [GitHub][github]. 1. Publish with `bin/publish_lib`. diff --git a/framed/Cargo.toml b/framed/Cargo.toml index 775cd7a..b2c2e84 100644 --- a/framed/Cargo.toml +++ b/framed/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "framed" -version = "0.2.0" +version = "0.3.0" description = "Send and receive data over lossy streams of bytes." authors = ["Alex Helfet "] categories = ["no-std", "embedded", "encoding", "network-programming"]