diff --git a/Cargo.lock b/Cargo.lock index 02122fa..3ffb5ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -843,8 +843,8 @@ dependencies = [ ] [[package]] -name = "mum" -version = "0.5.0" +name = "mum-cli" +version = "0.5.1" dependencies = [ "bincode", "bytes", @@ -891,7 +891,7 @@ dependencies = [ [[package]] name = "mumlib" -version = "0.5.0" +version = "0.5.1" dependencies = [ "chrono", "colored", diff --git a/README.md b/README.md index 5a4a844..a94480f 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Requirements (package names are for Arch Linux): Build and install the latest published version: ```sh -$ cargo install mum +$ cargo install mum-cli ``` You can also build and install from source, for example with diff --git a/RELEASE-CHECKLIST.md b/RELEASE-CHECKLIST.md index a4050a9..dba2acd 100644 --- a/RELEASE-CHECKLIST.md +++ b/RELEASE-CHECKLIST.md @@ -24,7 +24,7 @@ - Make sure everything is commited and published. - Merge into main: `$ git switch main && git merge --no-ff x.y`. - Create a tag: `$ git tag vx.y.z`. -- Push both branches and the tag. +- Push main and the tag. - Create a new release on Github targeting the pushed tag. - Copy the changelog (change headers to `##`-headers). - Copy the output of `$ git diff va.b.c..vx.y.z --stat=80` where a.b.c is the diff --git a/mum/Cargo.toml b/mum/Cargo.toml index dbc2a54..054bc5c 100644 --- a/mum/Cargo.toml +++ b/mum/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "mum" -version = "0.5.0" +name = "mum-cli" +version = "0.5.1" authors = ["Gustav Sörnäs ", "Eskil Queseth "] edition = "2021" @@ -18,7 +18,7 @@ notifications = ["libnotify"] ogg = ["lewton"] [dependencies] -mumlib = { version = "0.5.0", path = "../mumlib" } +mumlib = { version = "0.5.1", path = "../mumlib" } bincode = "1.3.3" bytes = "1.1.0" diff --git a/mum/src/bin/mumd.rs b/mum/src/bin/mumd.rs index 0f3c059..091423f 100644 --- a/mum/src/bin/mumd.rs +++ b/mum/src/bin/mumd.rs @@ -1,7 +1,7 @@ use bytes::{BufMut, BytesMut}; use futures_util::{select, FutureExt, SinkExt, StreamExt}; use log::*; -use mum::state::State; +use mum_cli::state::State; use mumlib::command::{Command, CommandResponse}; use mumlib::setup_logger; use std::io::ErrorKind; @@ -19,7 +19,7 @@ async fn main() { } setup_logger(std::io::stderr(), true); - mum::notifications::init(); + mum_cli::notifications::init(); // check if another instance is live let connection = UnixStream::connect(mumlib::SOCKET_PATH).await; @@ -63,7 +63,7 @@ async fn main() { }; let run = select! { - r = mum::client::handle(state, command_receiver).fuse() => r, + r = mum_cli::client::handle(state, command_receiver).fuse() => r, _ = receive_commands(command_sender).fuse() => Ok(()), }; diff --git a/mumlib/Cargo.toml b/mumlib/Cargo.toml index 260901d..bd0004d 100644 --- a/mumlib/Cargo.toml +++ b/mumlib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mumlib" -version = "0.5.0" +version = "0.5.1" authors = ["Gustav Sörnäs ", "Eskil Queseth "] edition = "2021"