aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock6
-rw-r--r--changelog/0.3.txt58
-rw-r--r--mumctl/Cargo.toml2
-rw-r--r--mumd/Cargo.toml2
-rw-r--r--mumlib/Cargo.toml2
5 files changed, 64 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index bdd8329..3ac22a4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -800,7 +800,7 @@ dependencies = [
[[package]]
name = "mumctl"
-version = "0.2.0"
+version = "0.3.0"
dependencies = [
"clap",
"colored",
@@ -811,7 +811,7 @@ dependencies = [
[[package]]
name = "mumd"
-version = "0.2.0"
+version = "0.3.0"
dependencies = [
"argparse",
"bytes",
@@ -837,7 +837,7 @@ dependencies = [
[[package]]
name = "mumlib"
-version = "0.2.0"
+version = "0.3.0"
dependencies = [
"colored",
"fern",
diff --git a/changelog/0.3.txt b/changelog/0.3.txt
new file mode 100644
index 0000000..dab0e7f
--- /dev/null
+++ b/changelog/0.3.txt
@@ -0,0 +1,58 @@
+0.3 changelog
+=============
+
+Added
+-----
+
+ * Support for macOS.
+
+ * Notifications via libnotify (behind a feature-gate).
+
+ * List configured servers, if they're online and how many other users are
+ connected.
+
+ * Configure your own outgoing volume and others ingoing volume.
+
+ * Mute/deafen yourself and locally mute others.
+
+ * Sound effects.
+
+ * Short about-texts when using --help.
+
+ * Man pages.
+
+Fixed
+-----
+
+ * Starting an instance of mumd while another is already running now requires
+ the old instance to be shut down so instances aren't left running and
+ unreachable.
+
+ * Moved to dasp, a pure Rust digital audio signal processing library.
+
+Merges
+------
+
+3ae0eff Merge branch man (gustav)
+4db4520 Merge branch pitch-bug (eskil)
+4ffcc76 Merge branch docs (gustav)
+58947a7 Merge branch mumble-protocol-cleanup (eskil)
+c38ec42 Merge branch ping-cleanup (eskil)
+1db4ab3 Merge branch dasp (gustav)
+1014f6c Merge branch dont-overwrite-socket-file (gustav)
+790fdc0 Merge branch sound-effects-inside-binary (gustav)
+12eca8a Merge branch mumctl-log (gustav)
+b733e5b Merge branch mute-deafen-toggle-print (gustav)
+a5448f6 Merge branch help-about (gustav)
+c9c56a2 Merge branch reorder-commands (gustav)
+417b09d Merge branch readme-features (gustav)
+08397f8 Merge branch sound-effect (eskil)
+0a491a4 Merge branch mute-fix (eskil)
+447cdfa Merge branch cfg-libnotify (gustav)
+1b3bceb Merge branch mute (eskil)
+d6496cb Merge branch audio-volume (eskil)
+831182b Merge branch server-status (eskil)
+3e7e375 Merge branch libnotify (gustav)
+7120ef1 Merge branch mac (gustav)
+
+git diff --stat v0.2..v0.3 --stat=80 -- **/*.rs
diff --git a/mumctl/Cargo.toml b/mumctl/Cargo.toml
index 8483042..ffcb5ef 100644
--- a/mumctl/Cargo.toml
+++ b/mumctl/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mumctl"
-version = "0.2.0"
+version = "0.3.0"
authors = ["Gustav Sörnäs <gustav@sornas.net>",
"Eskil Queseth <eskilq@kth.se>"]
license = "MIT"
diff --git a/mumd/Cargo.toml b/mumd/Cargo.toml
index 39b9d26..14ae241 100644
--- a/mumd/Cargo.toml
+++ b/mumd/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mumd"
-version = "0.2.0"
+version = "0.3.0"
authors = ["Gustav Sörnäs <gustav@sornas.net>",
"Eskil Queseth <eskilq@kth.se>"]
license = "MIT"
diff --git a/mumlib/Cargo.toml b/mumlib/Cargo.toml
index 74bdb32..2df0950 100644
--- a/mumlib/Cargo.toml
+++ b/mumlib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mumlib"
-version = "0.2.0"
+version = "0.3.0"
authors = ["Gustav Sörnäs <gustav@sornas.net>",
"Eskil Queseth <eskilq@kth.se>"]
edition = "2018"