diff --git a/Cargo.lock b/Cargo.lock index b06852bd..5c168803 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3110,7 +3110,7 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "tsukimi" -version = "0.15.2" +version = "0.16.0" dependencies = [ "anyhow", "async-channel", diff --git a/Cargo.toml b/Cargo.toml index 325cd1b5..7bb0a41e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tsukimi" -version = "0.15.2" +version = "0.16.0" edition = "2021" description = "A simple Emby Client with MPV written by GTK4-RS" license = "GPL" diff --git a/installer/version.txt b/installer/version.txt index 31ff686f..9c45a487 100644 --- a/installer/version.txt +++ b/installer/version.txt @@ -1 +1 @@ -0.15.2.0 \ No newline at end of file +0.16.0.0 \ No newline at end of file diff --git a/src/config/mod.rs b/src/config/mod.rs index 83f07fdf..1c9bd0ee 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -4,7 +4,7 @@ use crate::ui::provider::descriptor::VecSerialize; pub mod proxy; -pub const APP_VERSION: &str = "0.15.2"; +pub const APP_VERSION: &str = "0.16.0"; #[derive(Serialize, Debug, Deserialize)] pub struct Config { diff --git a/src/ui/mod.rs b/src/ui/mod.rs index 7a87b594..33e10caa 100644 --- a/src/ui/mod.rs +++ b/src/ui/mod.rs @@ -17,7 +17,7 @@ pub fn build_ui(app: &adw::Application) { .application_name("Tsukimi") .version(crate::config::APP_VERSION) .comments( - "A simple third-party Emby client.\nVersion: tsukimi 0.15.2 \n2024.10.11 20:17", + "A simple third-party Emby client.\nVersion: tsukimi 0.16.0 \n2024.10.11 20:17", ) // TRANSLATORS: 'Name ' or 'Name https://website.example' .translator_credits(gettext("translator-credits"))