From c2f47e73958fda925019755efe877183ac43ba91 Mon Sep 17 00:00:00 2001 From: Auri Date: Fri, 12 Mar 2021 21:19:46 -0800 Subject: [PATCH] Bump version to 1.1.2 --- Cargo.toml | 2 +- src/window/about.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 435e1eb..c9cc83b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "myxer" -version = "1.1.1" +version = "1.1.2" description = "A modern Volume Mixer for PulseAudio" readme = "README.md" license = "GPL-3.0" diff --git a/src/window/about.rs b/src/window/about.rs index b6d586e..fb336e4 100644 --- a/src/window/about.rs +++ b/src/window/about.rs @@ -4,7 +4,7 @@ pub fn about() { let about = gtk::AboutDialog::new(); about.set_logo_icon_name(Some("multimedia-volume-control")); about.set_program_name("Myxer"); - about.set_version(Some("1.1.1")); + about.set_version(Some("1.1.2")); about.set_comments(Some("A modern Volume Mixer for PulseAudio.")); about.set_website(Some("https://myxer.aurailus.com")); about.set_copyright(Some("© 2021 Auri Collings"));