From ea53586408350e00b58c09e30864b3ec316503fb Mon Sep 17 00:00:00 2001 From: Aurailus Date: Mon, 15 Apr 2024 16:05:13 -0700 Subject: [PATCH] Bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- PKGBUILD | 2 +- src/window/about.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 65027a4..32c1cf8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -444,7 +444,7 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" [[package]] name = "myxer" -version = "1.2.1" +version = "1.3.0" dependencies = [ "colorsys", "gdk", diff --git a/Cargo.toml b/Cargo.toml index d059fbe..b7bc890 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "myxer" -version = "1.2.1" +version = "1.3.0" description = "A modern Volume Mixer for PulseAudio" readme = "README.md" license = "GPL-3.0" diff --git a/PKGBUILD b/PKGBUILD index 1f4866a..4d93166 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ pkgname=myxer _pkgname=Myxer -pkgver=1.2.1 +pkgver=1.3.0 pkgrel=1 pkgdesc='A modern Volume Mixer for PulseAudio, built with you in mind.' url='https://github.com/Aurailus/Myxer' diff --git a/src/window/about.rs b/src/window/about.rs index d3829b4..9f53a42 100644 --- a/src/window/about.rs +++ b/src/window/about.rs @@ -14,7 +14,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.2.1")); + about.set_version(Some("1.3.0")); about.set_comments(Some("A modern Volume Mixer for PulseAudio.")); about.set_website(Some("https://github.com/Aurailus/Myxer")); about.set_copyright(Some("© 2021 Auri Collings"));