From 42b28438a3abf741096170c2f527b85ac25174ea Mon Sep 17 00:00:00 2001 From: Brian Pearce Date: Mon, 3 Aug 2020 21:04:33 +0200 Subject: [PATCH] Version bump to 0.8.2 --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.lock | 40 ++++++++++++++++++++-------------------- Cargo.toml | 2 +- common/Cargo.toml | 2 +- edit/Cargo.toml | 2 +- list/Cargo.toml | 2 +- load/Cargo.toml | 2 +- new/Cargo.toml | 2 +- snapshot/Cargo.toml | 2 +- 9 files changed, 44 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73016c5..4d4a803 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ + +### 0.8.2 The one that lists projects (2020-08-03) + +#### Features + +* The list and ls subcommand from [@coreyja](https://github.com/coreyja) ([78ec7068](https://github.com/brianp/muxed/commit/78ec70681e852e6734c2a2680ab9fb9d47992ff7)) + +#### Documentation + +* **README:** Update usage for list and ls ([039ccb96](https://github.com/brianp/muxed/commit/039ccb965fb9523117b51fa1ceb1e4ffd174d513)) + +#### Refactor + +* Replace string slices in favor of Rc strings ([0bfad6ec](https://github.com/brianp/muxed/commit/0bfad6ec84e01c696024955c179ac21d71f4a1fe)) +* **Dockerfiles:** Rename stable to nix ([f46a3ecf](https://github.com/brianp/muxed/commit/f46a3ecf1ca0e6ceef4bbaee073b6d5dff5a6bb6)) +* **Packaging:** Include license, changlog, and readme files ([c729dee0](https://github.com/brianp/muxed/commit/c729dee057c0f20e69c3de12270f18cb7ecb1143)) + ### 0.8.1 The one that supports better session switching (2020-01-02) diff --git a/Cargo.lock b/Cargo.lock index f7969fc..5a01e25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -94,7 +94,7 @@ dependencies = [ [[package]] name = "common" -version = "0.8.2-development" +version = "0.8.2" dependencies = [ "dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -144,9 +144,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "edit" -version = "0.8.2-development" +version = "0.8.2" dependencies = [ - "common 0.8.2-development", + "common 0.8.2", "dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -208,20 +208,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "list" -version = "0.8.2-development" +version = "0.8.2" dependencies = [ - "common 0.8.2-development", + "common 0.8.2", ] [[package]] name = "load" -version = "0.8.2-development" +version = "0.8.2" dependencies = [ - "common 0.8.2-development", + "common 0.8.2", "dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "snapshot 0.8.2-development", + "snapshot 0.8.2", "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -232,22 +232,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "muxed" -version = "0.8.2-development" +version = "0.8.2" dependencies = [ - "common 0.8.2-development", + "common 0.8.2", "docopt 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "edit 0.8.2-development", - "list 0.8.2-development", - "load 0.8.2-development", - "new 0.8.2-development", - "snapshot 0.8.2-development", + "edit 0.8.2", + "list 0.8.2", + "load 0.8.2", + "new 0.8.2", + "snapshot 0.8.2", ] [[package]] name = "new" -version = "0.8.2-development" +version = "0.8.2" dependencies = [ - "common 0.8.2-development", + "common 0.8.2", ] [[package]] @@ -436,10 +436,10 @@ dependencies = [ [[package]] name = "snapshot" -version = "0.8.2-development" +version = "0.8.2" dependencies = [ - "common 0.8.2-development", - "new 0.8.2-development", + "common 0.8.2", + "new 0.8.2", "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.103 (registry+https://github.com/rust-lang/crates.io-index)", "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 64b9d68..cddbbb4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "muxed" -version = "0.8.2-development" +version = "0.8.2" authors = ["Brian Pearce"] [[bin]] diff --git a/common/Cargo.toml b/common/Cargo.toml index a53fdc9..7204c21 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common" -version = "0.8.2-development" +version = "0.8.2" authors = ["Brian Pearce"] publish = false diff --git a/edit/Cargo.toml b/edit/Cargo.toml index 124d6e1..af6a964 100644 --- a/edit/Cargo.toml +++ b/edit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "edit" -version = "0.8.2-development" +version = "0.8.2" authors = ["Brian Pearce"] publish = false diff --git a/list/Cargo.toml b/list/Cargo.toml index 811dcad..db0727e 100644 --- a/list/Cargo.toml +++ b/list/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "list" -version = "0.8.2-development" +version = "0.8.2" authors = ["Brian Pearce"] publish = false diff --git a/load/Cargo.toml b/load/Cargo.toml index 7c2a2f2..f59cb71 100644 --- a/load/Cargo.toml +++ b/load/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "load" -version = "0.8.2-development" +version = "0.8.2" authors = ["Brian Pearce"] publish = false diff --git a/new/Cargo.toml b/new/Cargo.toml index 53479e9..f69c8fa 100644 --- a/new/Cargo.toml +++ b/new/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "new" -version = "0.8.2-development" +version = "0.8.2" authors = ["Brian Pearce"] publish = false diff --git a/snapshot/Cargo.toml b/snapshot/Cargo.toml index 5c8ea58..afe55e8 100644 --- a/snapshot/Cargo.toml +++ b/snapshot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snapshot" -version = "0.8.2-development" +version = "0.8.2" authors = ["Brian Pearce"] publish = false