diff --git a/README.md b/README.md index 9fff76f..9cf8a90 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,3 @@ - - @@ -67,11 +61,10 @@ Next, it can be installed by `meson install`. # Dependencies If you use GNOME Builder or Flatpak, dependencies will be installed automatically. If you use pure Meson, dependencies will be: -- vala >= 0.52 -- gtk >= 4.2 -- gtksourceview >= 5.2 -- gio >= 2.50 -- gee >= 0.8 +- vala >= 0.56 +- gtk >= 4.10 +- gtksourceview >= 5.0 +- gio >= 2.74 - json-glib >= 1.6 - libadwaita >= 1.0 - postgres-libs >= 15.3 diff --git a/me.ppvan.psequel.json b/me.ppvan.psequel.json index 6b9ed33..9800b64 100644 --- a/me.ppvan.psequel.json +++ b/me.ppvan.psequel.json @@ -38,7 +38,8 @@ "sources": [ { "type": "git", - "url": "file:///home/ppvan/Documents/code/pet-projects/psequel" + "url": "https://github.com/ppvan/psequel", + "tag": "v0.1.0" } ], "modules": [ diff --git a/src/meson.build b/src/meson.build index ebf34f0..d2fb74b 100644 --- a/src/meson.build +++ b/src/meson.build @@ -74,11 +74,11 @@ configure_file(output: 'config.h', configuration: conf) psequel_deps = [ dependency('glib-2.0', version: '>=2.74'), - dependency('gtk4'), - dependency('libadwaita-1', version: '>= 1.2'), - dependency('json-glib-1.0'), - dependency('gtksourceview-5'), - dependency('libpq'), + dependency('gtk4', version: '>=4.10'), + dependency('libadwaita-1', version: '>= 1'), + dependency('json-glib-1.0', version: '>= 1.6'), + dependency('gtksourceview-5', version: '>= 5.0'), + dependency('libpq', version: '>= 15.3'), valac.find_library('config', dirs: vapi_dir), ]