From 08b46faa87ca9b39bef942dd6cc7b22d96aaaaa0 Mon Sep 17 00:00:00 2001 From: zefr0x Date: Fri, 17 Nov 2023 17:03:26 +0300 Subject: [PATCH] Bump version 1.0.0beta.1 and update CHANGELOG.md --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- meson.build | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6e3a90..2137b4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Unreleased +# 1.0.0beta.1 + +- Added + + - `notification:show_progress_bar` and `notification:minimum_update_delay` config options. + - Error message when no Wayland compositor is detected. + +- Fixed + + - No ensured delay between notification updates. + - No progress bar handling for durations less than 100 seconds. + # 1.0.0beta.0 - Improved diff --git a/Cargo.lock b/Cargo.lock index 334ee37..bb66d73 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -157,7 +157,7 @@ checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" [[package]] name = "ianny" -version = "1.0.0-beta.0" +version = "1.0.0-beta.1" dependencies = [ "gcd", "gettext-rs", diff --git a/Cargo.toml b/Cargo.toml index 0466d82..bd63ba6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ianny" -version = "1.0.0-beta.0" +version = "1.0.0-beta.1" authors = ["zefr0x"] edition = "2021" description = "Desktop utility that helps preventing repetitive strain injuries by keeping track of usage patterns and periodically informing user to take breaks" diff --git a/meson.build b/meson.build index 025ca60..09e3fa8 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('ianny', 'rust', - version : '1.0.0-beta.0', + version : '1.0.0-beta.1', license : 'GPL3', default_options : ['warning_level=2'])