diff --git a/Cargo.lock b/Cargo.lock
index 57e9bbb..2070369 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -112,7 +112,7 @@ dependencies = [
[[package]]
name = "bowl"
-version = "1.0.0"
+version = "1.0.1"
dependencies = [
"futures",
"gettext-rs",
diff --git a/Cargo.toml b/Cargo.toml
index bdb3dbe..610b530 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "bowl"
-version = "1.0.0"
+version = "1.0.1"
authors = ["Vika <vika@fireburn.ru>"]
license = "AGPL-3.0-only"
edition = "2021"
diff --git a/flake.nix b/flake.nix
index ecfc5b1..753b2c1 100644
--- a/flake.nix
+++ b/flake.nix
@@ -63,6 +63,8 @@
self.packages.${system}.xtr
pkgs.desktop-file-utils
+ # for Gir to work its magic; not needed for Bowl itself but rather for its dependencies
+ pkgs.python3 pkgs.gobject-introspection pkgs.libsecret
];
# Add gettext manuals to the manpath
diff --git a/meson.build b/meson.build
index 38bc9d4..cc832f5 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
project(
'bowl',
'rust',
- version: '0.1.0',
+ version: '1.0.1',
meson_version: '>= 1.1',
license: 'AGPLv3',
)
|