diff --git a/CHANGELOG.md b/CHANGELOG.md index decc3ed..d49d820 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Unreleased +# 0.1.0alpha.1 + +## Added + +- Config file support. + +## Dependencies + +- All dependencies are up to date. + # 0.1.0alpha.0 First release. diff --git a/Cargo.lock b/Cargo.lock index fa87cf8..db7cf94 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -125,7 +125,7 @@ checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" [[package]] name = "ianny" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.1" dependencies = [ "gcd", "notify-rust", diff --git a/Cargo.toml b/Cargo.toml index e11b21e..e041c8c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ianny" -version = "0.1.0-alpha.0" +version = "0.1.0-alpha.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 acc9df6..559cccc 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('ianny', 'rust', - version : '0.1.0-alpha.0', + version : '0.1.0-alpha.1', license : 'GPL3', default_options : ['warning_level=2'])