Skip to content

Commit fe7f460

Browse files
committed
-> mum-cli
1 parent 658d990 commit fe7f460

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Requirements (package names are for Arch Linux):
1818
Build and install the latest published version:
1919

2020
```sh
21-
$ cargo install mum
21+
$ cargo install mum-cli
2222
```
2323

2424
You can also build and install from source, for example with

RELEASE-CHECKLIST.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
- Make sure everything is commited and published.
2525
- Merge into main: `$ git switch main && git merge --no-ff x.y`.
2626
- Create a tag: `$ git tag vx.y.z`.
27-
- Push both branches and the tag.
27+
- Push main and the tag.
2828
- Create a new release on Github targeting the pushed tag.
2929
- Copy the changelog (change headers to `##`-headers).
3030
- Copy the output of `$ git diff va.b.c..vx.y.z --stat=80` where a.b.c is the

mum/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
2-
name = "mum"
3-
version = "0.5.0"
2+
name = "mum-cli"
3+
version = "0.5.1"
44
authors = ["Gustav Sörnäs <gustav@sornas.net>",
55
"Eskil Queseth <eskilq@kth.se>"]
66
edition = "2021"
@@ -18,7 +18,7 @@ notifications = ["libnotify"]
1818
ogg = ["lewton"]
1919

2020
[dependencies]
21-
mumlib = { version = "0.5.0", path = "../mumlib" }
21+
mumlib = { version = "0.5.1", path = "../mumlib" }
2222

2323
bincode = "1.3.3"
2424
bytes = "1.1.0"

mum/src/bin/mumd.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use bytes::{BufMut, BytesMut};
22
use futures_util::{select, FutureExt, SinkExt, StreamExt};
33
use log::*;
4-
use mum::state::State;
4+
use mum_cli::state::State;
55
use mumlib::command::{Command, CommandResponse};
66
use mumlib::setup_logger;
77
use std::io::ErrorKind;
@@ -19,7 +19,7 @@ async fn main() {
1919
}
2020

2121
setup_logger(std::io::stderr(), true);
22-
mum::notifications::init();
22+
mum_cli::notifications::init();
2323

2424
// check if another instance is live
2525
let connection = UnixStream::connect(mumlib::SOCKET_PATH).await;
@@ -63,7 +63,7 @@ async fn main() {
6363
};
6464

6565
let run = select! {
66-
r = mum::client::handle(state, command_receiver).fuse() => r,
66+
r = mum_cli::client::handle(state, command_receiver).fuse() => r,
6767
_ = receive_commands(command_sender).fuse() => Ok(()),
6868
};
6969

mumlib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mumlib"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["Gustav Sörnäs <gustav@sornas.net>",
55
"Eskil Queseth <eskilq@kth.se>"]
66
edition = "2021"

0 commit comments

Comments
 (0)